home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Universal Viewer / UniversalViewer.exe / Plugins / Syn2 / HL / LexLib.LXL < prev    next >
Encoding:
Text File  |  2007-12-12  |  489.8 KB  |  17,199 lines

  1. object SyntaxManager: TSyntaxManager
  2.   Left = 360
  3.   Top = 136
  4.   object SyntAnal38: TLibSyntAnalyzer
  5.     Formats = <
  6.       item
  7.         DisplayName = 'Default'
  8.         Font.Charset = DEFAULT_CHARSET
  9.         Font.Color = clWindowText
  10.         Font.Height = -13
  11.         Font.Name = 'Courier New'
  12.         Font.Style = []
  13.         FormatType = ftCustomFont
  14.       end
  15.       item
  16.         DisplayName = 'Marked block'
  17.         Font.Charset = DEFAULT_CHARSET
  18.         Font.Color = clHighlightText
  19.         Font.Height = -13
  20.         Font.Name = 'Courier New'
  21.         Font.Style = []
  22.         BgColor = clHighlight
  23.         FormatType = ftColor
  24.       end
  25.       item
  26.         DisplayName = 'Symbol'
  27.         Font.Charset = DEFAULT_CHARSET
  28.         Font.Color = clMaroon
  29.         Font.Height = -13
  30.         Font.Name = 'Courier New'
  31.         Font.Style = [fsBold]
  32.       end
  33.       item
  34.         DisplayName = 'Number'
  35.         Font.Charset = DEFAULT_CHARSET
  36.         Font.Color = clNavy
  37.         Font.Height = -13
  38.         Font.Name = 'Courier New'
  39.         Font.Style = [fsBold]
  40.       end
  41.       item
  42.         DisplayName = 'String'
  43.         Font.Charset = DEFAULT_CHARSET
  44.         Font.Color = clBlue
  45.         Font.Height = -13
  46.         Font.Name = 'Courier New'
  47.         Font.Style = []
  48.       end
  49.       item
  50.         DisplayName = 'Identifier'
  51.         Font.Charset = DEFAULT_CHARSET
  52.         Font.Color = clWindowText
  53.         Font.Height = -13
  54.         Font.Name = 'Courier New'
  55.         Font.Style = []
  56.       end
  57.       item
  58.         DisplayName = 'Reserved word'
  59.         Font.Charset = DEFAULT_CHARSET
  60.         Font.Color = clWindowText
  61.         Font.Height = -13
  62.         Font.Name = 'Courier New'
  63.         Font.Style = [fsBold]
  64.       end
  65.       item
  66.         DisplayName = 'Comment'
  67.         Font.Charset = DEFAULT_CHARSET
  68.         Font.Color = clRed
  69.         Font.Height = -13
  70.         Font.Name = 'Courier New'
  71.         Font.Style = [fsBold]
  72.       end
  73.       item
  74.         DisplayName = 'Preprocessor'
  75.         Font.Charset = DEFAULT_CHARSET
  76.         Font.Color = clGreen
  77.         Font.Height = -13
  78.         Font.Name = 'Courier New'
  79.         Font.Style = [fsItalic]
  80.       end
  81.       item
  82.         DisplayName = 'Current block'
  83.         Font.Charset = RUSSIAN_CHARSET
  84.         Font.Color = clMaroon
  85.         Font.Height = -13
  86.         Font.Name = 'Courier New'
  87.         Font.Style = [fsBold]
  88.         BgColor = 13369046
  89.         FormatType = ftColor
  90.         BorderTypeLeft = blSolid
  91.         BorderColorLeft = clGray
  92.         BorderTypeTop = blSolid
  93.         BorderColorTop = clGray
  94.         BorderTypeRight = blSolid
  95.         BorderColorRight = clGray
  96.         BorderTypeBottom = blSolid
  97.         BorderColorBottom = clGray
  98.       end>
  99.     TokenRules = <
  100.       item
  101.         DisplayName = 'Comment 1'
  102.         StyleName = 'Comment'
  103.         TokenType = 1
  104.         Expression = '(?s)/\*.*?(\*/|\Z)'
  105.         ColumnFrom = 0
  106.         ColumnTo = 0
  107.       end
  108.       item
  109.         DisplayName = 'Comment 2'
  110.         StyleName = 'Comment'
  111.         TokenType = 1
  112.         Expression = '//.*'
  113.         ColumnFrom = 0
  114.         ColumnTo = 0
  115.       end
  116.       item
  117.         DisplayName = 'String'
  118.         StyleName = 'String'
  119.         TokenType = 4
  120.         Expression = '".*?("|$)'
  121.         ColumnFrom = 0
  122.         ColumnTo = 0
  123.       end
  124.       item
  125.         DisplayName = 'Any name'
  126.         StyleName = 'Identifier'
  127.         TokenType = 2
  128.         Expression = '[a-z_]\w*'
  129.         ColumnFrom = 0
  130.         ColumnTo = 0
  131.       end
  132.       item
  133.         DisplayName = 'HEX'
  134.         StyleName = 'Number'
  135.         TokenType = 7
  136.         Expression = '0x[\da-f]*'
  137.         ColumnFrom = 0
  138.         ColumnTo = 0
  139.       end
  140.       item
  141.         DisplayName = 'Float'
  142.         StyleName = 'Number'
  143.         TokenType = 6
  144.         Expression = '\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'\d+ \. \d+'
  145.         ColumnFrom = 0
  146.         ColumnTo = 0
  147.       end
  148.       item
  149.         DisplayName = 'Integer'
  150.         StyleName = 'Number'
  151.         TokenType = 5
  152.         Expression = '\d+'
  153.         ColumnFrom = 0
  154.         ColumnTo = 0
  155.       end
  156.       item
  157.         DisplayName = 'Single symbol'
  158.         StyleName = 'Symbol'
  159.         TokenType = 3
  160.         Expression = '[\{\}\(\)\[\],;\.]'
  161.         ColumnFrom = 0
  162.         ColumnTo = 0
  163.       end
  164.       item
  165.         DisplayName = 'Symbol'
  166.         StyleName = 'Symbol'
  167.         TokenType = 3
  168.         Expression = '[/\+\-\*:=<>&/\|\^~!]+'
  169.         ColumnFrom = 0
  170.         ColumnTo = 0
  171.       end>
  172.     BlockRules = <
  173.       item
  174.         DisplayName = 'Key words'
  175.         StyleName = 'Reserved word'
  176.         BlockType = btTagDetect
  177.         ConditionList = <
  178.           item
  179.             TagList.Strings = (
  180.               'break'
  181.               'case'
  182.               'catch'
  183.               'class'
  184.               'const'
  185.               'continue'
  186.               'debugger'
  187.               'default'
  188.               'delete'
  189.               'do'
  190.               'else'
  191.               'enum'
  192.               'export'
  193.               'extends'
  194.               'false'
  195.               'finally'
  196.               'for'
  197.               'function'
  198.               'if'
  199.               'import'
  200.               'in'
  201.               'new'
  202.               'null'
  203.               'return'
  204.               'super'
  205.               'switch'
  206.               'this'
  207.               'throw'
  208.               'true'
  209.               'try'
  210.               'typeof'
  211.               'var'
  212.               'void'
  213.               'while'
  214.               'with')
  215.             TokenTypes = 4
  216.           end>
  217.         HighlightPos = cpAny
  218.         IgnoreAsParent = False
  219.       end
  220.       item
  221.         DisplayName = 'End'
  222.         BlockType = btRangeEnd
  223.         ConditionList = <
  224.           item
  225.             TagList.Strings = (
  226.               '}')
  227.             TokenTypes = 8
  228.           end>
  229.         HighlightPos = cpAny
  230.         IgnoreAsParent = False
  231.       end
  232.       item
  233.         DisplayName = 'Begin'
  234.         StyleName = 'Current block'
  235.         ConditionList = <
  236.           item
  237.             TagList.Strings = (
  238.               '{')
  239.             TokenTypes = 8
  240.           end>
  241.         IdentIndex = 1
  242.         BlockEnd = 'End'
  243.         DisplayInTree = False
  244.         DynHighlight = dhBound
  245.         HighlightPos = cpRange
  246.         IgnoreAsParent = False
  247.       end
  248.       item
  249.         DisplayName = 'function'
  250.         ConditionList = <
  251.           item
  252.             TagList.Strings = (
  253.               'function')
  254.             TokenTypes = 4
  255.           end>
  256.         BlockEnd = 'function end'
  257.         NameFmt = '%s0 %s-1'
  258.         HighlightPos = cpAny
  259.         IgnoreAsParent = False
  260.       end
  261.       item
  262.         DisplayName = 'function end'
  263.         BlockName = 'function'
  264.         StrictParent = True
  265.         BlockType = btRangeEnd
  266.         ConditionList = <
  267.           item
  268.             TagList.Strings = (
  269.               '}')
  270.             TokenTypes = 8
  271.           end>
  272.         HighlightPos = cpAny
  273.         IgnoreAsParent = False
  274.       end
  275.       item
  276.         DisplayName = '('
  277.         StyleName = 'Current block'
  278.         ConditionList = <
  279.           item
  280.             TagList.Strings = (
  281.               '(')
  282.             TokenTypes = 8
  283.           end>
  284.         BlockEnd = ')'
  285.         NotCollapsed = True
  286.         DisplayInTree = False
  287.         DynHighlight = dhBound
  288.         HighlightPos = cpBoundTagBegin
  289.         DynSelectMin = True
  290.         IgnoreAsParent = False
  291.       end
  292.       item
  293.         DisplayName = ')'
  294.         BlockType = btRangeEnd
  295.         ConditionList = <
  296.           item
  297.             TagList.Strings = (
  298.               ')')
  299.             TokenTypes = 8
  300.           end>
  301.         HighlightPos = cpAny
  302.         IgnoreAsParent = False
  303.       end
  304.       item
  305.         DisplayName = '['
  306.         StyleName = 'Current block'
  307.         ConditionList = <
  308.           item
  309.             TagList.Strings = (
  310.               '[')
  311.             TokenTypes = 8
  312.           end>
  313.         BlockEnd = ']'
  314.         NotCollapsed = True
  315.         DisplayInTree = False
  316.         DynHighlight = dhBound
  317.         HighlightPos = cpBoundTagBegin
  318.         DynSelectMin = True
  319.         IgnoreAsParent = False
  320.       end
  321.       item
  322.         DisplayName = ']'
  323.         BlockType = btRangeEnd
  324.         ConditionList = <
  325.           item
  326.             TagList.Strings = (
  327.               ']')
  328.             TokenTypes = 8
  329.           end>
  330.         HighlightPos = cpAny
  331.         IgnoreAsParent = False
  332.       end>
  333.     CodeTemplates = <>
  334.     SubAnalyzers = <>
  335.     SampleText.Strings = (
  336.       ''
  337.       '// example function'
  338.       'function SetEnabled(A,count)'
  339.       '{'
  340.       '  for(i= 0; i< count;i++)'
  341.       '    A(i).Enabled = !A(i).Enabled;'
  342.       ''
  343.       '}'
  344.       '')
  345.     TokenTypeNames.Strings = (
  346.       'Unknown'
  347.       'Comment'
  348.       'Identifier'
  349.       'Symbol'
  350.       'String'
  351.       'Integer const'
  352.       'Float const'
  353.       'Hex const'
  354.       'Char const'
  355.       'Preprocessor')
  356.     MarkedBlockStyle = 'Marked block'
  357.     DefaultStyleName = 'Default'
  358.     Extentions = 'js'
  359.     LexerName = 'Java Script'
  360.   end
  361.   object LibSyntAnalyzer1: TLibSyntAnalyzer
  362.     Formats = <
  363.       item
  364.         DisplayName = 'Default'
  365.         Font.Charset = RUSSIAN_CHARSET
  366.         Font.Color = clWindowText
  367.         Font.Height = -13
  368.         Font.Name = 'Courier New'
  369.         Font.Style = []
  370.         FormatType = ftCustomFont
  371.       end
  372.       item
  373.         DisplayName = 'Symbol'
  374.         Font.Charset = RUSSIAN_CHARSET
  375.         Font.Color = clMaroon
  376.         Font.Height = -13
  377.         Font.Name = 'Courier New'
  378.         Font.Style = [fsBold]
  379.       end
  380.       item
  381.         DisplayName = 'Number'
  382.         Font.Charset = RUSSIAN_CHARSET
  383.         Font.Color = clNavy
  384.         Font.Height = -13
  385.         Font.Name = 'Courier New'
  386.         Font.Style = [fsBold]
  387.       end
  388.       item
  389.         DisplayName = 'String'
  390.         Font.Charset = RUSSIAN_CHARSET
  391.         Font.Color = clBlue
  392.         Font.Height = -13
  393.         Font.Name = 'Courier New'
  394.         Font.Style = []
  395.       end
  396.       item
  397.         DisplayName = 'Identifier'
  398.         Font.Charset = RUSSIAN_CHARSET
  399.         Font.Color = clWindowText
  400.         Font.Height = -13
  401.         Font.Name = 'Courier New'
  402.         Font.Style = []
  403.       end
  404.       item
  405.         DisplayName = 'Reserved word'
  406.         Font.Charset = RUSSIAN_CHARSET
  407.         Font.Color = clWindowText
  408.         Font.Height = -13
  409.         Font.Name = 'Courier New'
  410.         Font.Style = [fsBold]
  411.       end
  412.       item
  413.         DisplayName = 'Comment'
  414.         Font.Charset = RUSSIAN_CHARSET
  415.         Font.Color = clRed
  416.         Font.Height = -13
  417.         Font.Name = 'Courier New'
  418.         Font.Style = [fsBold]
  419.       end
  420.       item
  421.         DisplayName = 'Preprocessor'
  422.         Font.Charset = RUSSIAN_CHARSET
  423.         Font.Color = clGreen
  424.         Font.Height = -13
  425.         Font.Name = 'Courier New'
  426.         Font.Style = [fsItalic]
  427.       end
  428.       item
  429.         DisplayName = 'Assembler'
  430.         Font.Charset = RUSSIAN_CHARSET
  431.         Font.Color = clNone
  432.         Font.Height = -13
  433.         Font.Name = 'Courier New'
  434.         Font.Style = []
  435.         BgColor = 15724510
  436.         FormatType = ftBackGround
  437.       end
  438.       item
  439.         DisplayName = 'Marked block'
  440.         Font.Charset = RUSSIAN_CHARSET
  441.         Font.Color = clHighlightText
  442.         Font.Height = -13
  443.         Font.Name = 'Courier New'
  444.         Font.Style = []
  445.         BgColor = clHighlight
  446.         FormatType = ftColor
  447.         BorderColorLeft = clRed
  448.         BorderColorTop = clRed
  449.         BorderColorRight = clRed
  450.         BorderColorBottom = clRed
  451.         MultiLineBorder = True
  452.       end
  453.       item
  454.         DisplayName = 'Interface section'
  455.         Font.Charset = RUSSIAN_CHARSET
  456.         Font.Color = clHighlight
  457.         Font.Height = -13
  458.         Font.Name = 'Courier New'
  459.         Font.Style = []
  460.         BgColor = 15269887
  461.         FormatType = ftBackGround
  462.       end
  463.       item
  464.         DisplayName = 'Implemenation Section'
  465.         Font.Charset = RUSSIAN_CHARSET
  466.         Font.Color = clWindowText
  467.         Font.Height = -13
  468.         Font.Name = 'Courier New'
  469.         Font.Style = []
  470.         BgColor = 16121842
  471.         FormatType = ftBackGround
  472.       end
  473.       item
  474.         DisplayName = 'Function separator'
  475.         Font.Charset = RUSSIAN_CHARSET
  476.         Font.Color = clWindowText
  477.         Font.Height = -13
  478.         Font.Name = 'Courier New'
  479.         Font.Style = []
  480.         BgColor = clRed
  481.         FormatType = ftBackGround
  482.       end
  483.       item
  484.         DisplayName = 'Current block'
  485.         Font.Charset = RUSSIAN_CHARSET
  486.         Font.Color = clMaroon
  487.         Font.Height = -13
  488.         Font.Name = 'Courier New'
  489.         Font.Style = [fsBold]
  490.         BgColor = 13369046
  491.         FormatType = ftColor
  492.         BorderTypeLeft = blSolid
  493.         BorderColorLeft = clGray
  494.         BorderTypeTop = blSolid
  495.         BorderColorTop = clGray
  496.         BorderTypeRight = blSolid
  497.         BorderColorRight = clGray
  498.         BorderTypeBottom = blSolid
  499.         BorderColorBottom = clGray
  500.       end
  501.       item
  502.         DisplayName = 'Current function'
  503.         Font.Charset = RUSSIAN_CHARSET
  504.         Font.Color = clMaroon
  505.         Font.Height = -13
  506.         Font.Name = 'Courier New'
  507.         Font.Style = []
  508.         BgColor = 16776187
  509.         FormatType = ftBackGround
  510.         MultiLineBorder = True
  511.       end
  512.       item
  513.         DisplayName = 'Current Line'
  514.         Font.Charset = RUSSIAN_CHARSET
  515.         Font.Color = clWindowText
  516.         Font.Height = -13
  517.         Font.Name = 'Courier New'
  518.         Font.Style = []
  519.         BgColor = 16772341
  520.         FormatType = ftBackGround
  521.       end
  522.       item
  523.         DisplayName = 'Search Match'
  524.         Font.Charset = DEFAULT_CHARSET
  525.         Font.Color = clWindow
  526.         Font.Height = -16
  527.         Font.Name = 'Courier New'
  528.         Font.Style = [fsBold]
  529.         BgColor = clBlack
  530.       end
  531.       item
  532.         DisplayName = 'Group (tree)'
  533.         Font.Charset = RUSSIAN_CHARSET
  534.         Font.Color = clNavy
  535.         Font.Height = -13
  536.         Font.Name = 'Times New Roman'
  537.         Font.Style = [fsBold, fsItalic]
  538.       end
  539.       item
  540.         DisplayName = 'Intern. function (tree)'
  541.         Font.Charset = RUSSIAN_CHARSET
  542.         Font.Color = clBlue
  543.         Font.Height = -13
  544.         Font.Name = 'Courier New'
  545.         Font.Style = []
  546.       end
  547.       item
  548.         DisplayName = 'class (tree)'
  549.         Font.Charset = RUSSIAN_CHARSET
  550.         Font.Color = clWindowText
  551.         Font.Height = -13
  552.         Font.Name = 'Courier New'
  553.         Font.Style = [fsBold]
  554.       end>
  555.     TokenRules = <
  556.       item
  557.         DisplayName = 'Any name'
  558.         StyleName = 'Identifier'
  559.         TokenType = 2
  560.         Expression = '[a-z_]\w*'
  561.         ColumnFrom = 0
  562.         ColumnTo = 0
  563.       end
  564.       item
  565.         DisplayName = 'String'
  566.         StyleName = 'String'
  567.         TokenType = 4
  568.         Expression = #39'.*?('#39'|$)'#13#10
  569.         ColumnFrom = 0
  570.         ColumnTo = 0
  571.       end
  572.       item
  573.         DisplayName = 'Float'
  574.         StyleName = 'Number'
  575.         TokenType = 6
  576.         Expression = 
  577.           '#with exp. dot is optional '#13#10'\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'#witho' +
  578.           'ut exp. dot is required'#13#10'\d+ \. \d+'
  579.         ColumnFrom = 0
  580.         ColumnTo = 0
  581.       end
  582.       item
  583.         DisplayName = 'Integer'
  584.         StyleName = 'Number'
  585.         TokenType = 5
  586.         Expression = '\d+'
  587.         ColumnFrom = 0
  588.         ColumnTo = 0
  589.       end
  590.       item
  591.         DisplayName = 'Preprocessor 1'
  592.         StyleName = 'Preprocessor'
  593.         AlwaysEnabled = True
  594.         TokenType = 9
  595.         Expression = '\{\$.*?\}'
  596.         ColumnFrom = 0
  597.         ColumnTo = 0
  598.       end
  599.       item
  600.         DisplayName = 'Preprocessor 2'
  601.         StyleName = 'Preprocessor'
  602.         AlwaysEnabled = True
  603.         TokenType = 9
  604.         Expression = '\(\*\$.*?\*\)'
  605.         ColumnFrom = 0
  606.         ColumnTo = 0
  607.       end
  608.       item
  609.         DisplayName = 'Comment 1'
  610.         StyleName = 'Comment'
  611.         AlwaysEnabled = True
  612.         TokenType = 1
  613.         Expression = '(?s)\(\*.*?(\*\)|\Z)'
  614.         ColumnFrom = 0
  615.         ColumnTo = 0
  616.       end
  617.       item
  618.         DisplayName = 'Comment 2'
  619.         StyleName = 'Comment'
  620.         AlwaysEnabled = True
  621.         TokenType = 1
  622.         Expression = '(?s)\{.*?(\}|\Z)'#13#10
  623.         ColumnFrom = 0
  624.         ColumnTo = 0
  625.       end
  626.       item
  627.         DisplayName = 'Comment 3'
  628.         StyleName = 'Comment'
  629.         AlwaysEnabled = True
  630.         TokenType = 1
  631.         Expression = '//.*'
  632.         ColumnFrom = 0
  633.         ColumnTo = 0
  634.       end
  635.       item
  636.         DisplayName = 'HEX'
  637.         StyleName = 'Number'
  638.         TokenType = 7
  639.         Expression = '\$[a-f\d]+'
  640.         ColumnFrom = 0
  641.         ColumnTo = 0
  642.       end
  643.       item
  644.         DisplayName = 'Symbol'
  645.         StyleName = 'Symbol'
  646.         TokenType = 3
  647.         Expression = '[/\*,\.;:\(\)=<>\+\-\[\]]'
  648.         ColumnFrom = 0
  649.         ColumnTo = 0
  650.       end
  651.       item
  652.         DisplayName = 'Char'
  653.         StyleName = 'String'
  654.         TokenType = 8
  655.         Expression = '\#(\d+|\$[\da-f]+)'
  656.         ColumnFrom = 0
  657.         ColumnTo = 0
  658.       end>
  659.     BlockRules = <
  660.       item
  661.         DisplayName = 'Key words'
  662.         StyleName = 'Reserved word'
  663.         BlockType = btTagDetect
  664.         ConditionList = <
  665.           item
  666.             TagList.Strings = (
  667.               'abstract'
  668.               'and'
  669.               'array'
  670.               'as'
  671.               'asm'
  672.               'begin'
  673.               'case'
  674.               'class'
  675.               'const'
  676.               'constructor'
  677.               'contains'
  678.               'destructor'
  679.               'dispinterface'
  680.               'div'
  681.               'do'
  682.               'downto'
  683.               'dynamic'
  684.               'else'
  685.               'end'
  686.               'except'
  687.               'exports'
  688.               'file'
  689.               'finalization'
  690.               'finally'
  691.               'for'
  692.               'function'
  693.               'goto'
  694.               'if'
  695.               'implementation'
  696.               'in'
  697.               'index'
  698.               'inherited'
  699.               'initialization'
  700.               'inline'
  701.               'interface'
  702.               'is'
  703.               'label'
  704.               'library'
  705.               'mod'
  706.               'nil'
  707.               'not'
  708.               'object'
  709.               'of'
  710.               'or'
  711.               'out'
  712.               'override'
  713.               'package'
  714.               'packed'
  715.               'pascal'
  716.               'private'
  717.               'procedure'
  718.               'program'
  719.               'property'
  720.               'protected'
  721.               'public'
  722.               'published'
  723.               'raise'
  724.               'read'
  725.               'record'
  726.               'register'
  727.               'repeat'
  728.               'requires'
  729.               'resourcestring'
  730.               'safecall'
  731.               'set'
  732.               'shl'
  733.               'shr'
  734.               'stdcall'
  735.               'string'
  736.               'then'
  737.               'threadvar'
  738.               'to'
  739.               'try'
  740.               'type'
  741.               'unit'
  742.               'until'
  743.               'uses'
  744.               'var'
  745.               'virtual'
  746.               'while'
  747.               'with'
  748.               'write'
  749.               'xor')
  750.             TokenTypes = 4
  751.             IgnoreCase = True
  752.           end>
  753.         HighlightPos = cpAny
  754.         IgnoreAsParent = False
  755.       end
  756.       item
  757.         DisplayName = 'Forward'
  758.         StyleName = 'Reserved word'
  759.         BlockType = btTagDetect
  760.         ConditionList = <
  761.           item
  762.             TagList.Strings = (
  763.               'forward'
  764.               'of')
  765.             TokenTypes = 4
  766.             IgnoreCase = True
  767.           end>
  768.         HighlightPos = cpAny
  769.         TokenType = 10
  770.         IgnoreAsParent = False
  771.       end
  772.       item
  773.         DisplayName = 'Block comment'
  774.         BlockName = 'Block comment'
  775.         NotParent = True
  776.         AlwaysEnabled = True
  777.         ConditionList = <
  778.           item
  779.             TokenTypes = 2
  780.           end>
  781.         BlockEnd = 'Block comment end'
  782.         DisplayInTree = False
  783.         HighlightPos = cpAny
  784.         CollapseFmt = '{ ... }'
  785.         IgnoreAsParent = False
  786.       end
  787.       item
  788.         DisplayName = 'Block comment end'
  789.         BlockName = 'Block comment'
  790.         StrictParent = True
  791.         AlwaysEnabled = True
  792.         BlockType = btRangeEnd
  793.         ConditionList = <
  794.           item
  795.             CondType = tcNotEqual
  796.             TokenTypes = 2
  797.           end
  798.           item
  799.             TokenTypes = 2
  800.           end>
  801.         BlockOffset = 1
  802.         HighlightPos = cpAny
  803.         IgnoreAsParent = False
  804.       end
  805.       item
  806.         DisplayName = 'begin'
  807.         StyleName = 'Current block'
  808.         ConditionList = <
  809.           item
  810.             TagList.Strings = (
  811.               'begin'
  812.               'case'
  813.               'try')
  814.             TokenTypes = 4
  815.             IgnoreCase = True
  816.           end>
  817.         BlockEnd = 'End'
  818.         DisplayInTree = False
  819.         DynHighlight = dhBound
  820.         HighlightPos = cpRange
  821.         DynSelectMin = True
  822.         DrawStaple = True
  823.         CollapseFmt = '%s0 ...'
  824.         IgnoreAsParent = False
  825.       end
  826.       item
  827.         DisplayName = 'End'
  828.         BlockType = btRangeEnd
  829.         ConditionList = <
  830.           item
  831.             TagList.Strings = (
  832.               'end')
  833.             TokenTypes = 4
  834.             IgnoreCase = True
  835.           end>
  836.         HighlightPos = cpAny
  837.         CancelNextRules = True
  838.         IgnoreAsParent = False
  839.       end
  840.       item
  841.         DisplayName = 'asm'
  842.         StyleName = 'Assembler'
  843.         ConditionList = <
  844.           item
  845.             TagList.Strings = (
  846.               'asm')
  847.             TokenTypes = 4
  848.             IgnoreCase = True
  849.           end>
  850.         BlockEnd = 'End'
  851.         Highlight = True
  852.         InvertColors = True
  853.         DisplayInTree = False
  854.         DynHighlight = dhRangeNoBound
  855.         HighlightPos = cpAny
  856.         CollapseFmt = 'ASM'
  857.         IgnoreAsParent = False
  858.       end
  859.       item
  860.         DisplayName = '{$ifdef}'
  861.         ConditionList = <
  862.           item
  863.             TagList.Strings = (
  864.               '\{\$if[n]?def')
  865.             CondType = tcMask
  866.             TokenTypes = 512
  867.             IgnoreCase = True
  868.           end>
  869.         BlockEnd = '{$endif}'
  870.         DisplayInTree = False
  871.         HighlightPos = cpAny
  872.         CollapseFmt = '%s0'
  873.         IgnoreAsParent = True
  874.       end
  875.       item
  876.         DisplayName = '{$endif}'
  877.         BlockType = btRangeEnd
  878.         ConditionList = <
  879.           item
  880.             TagList.Strings = (
  881.               '\{\$endif')
  882.             CondType = tcMask
  883.             TokenTypes = 512
  884.             IgnoreCase = True
  885.           end>
  886.         HighlightPos = cpAny
  887.         IgnoreAsParent = False
  888.       end
  889.       item
  890.         DisplayName = 'until'
  891.         BlockType = btRangeEnd
  892.         ConditionList = <
  893.           item
  894.             TagList.Strings = (
  895.               'until')
  896.             TokenTypes = 4
  897.             IgnoreCase = True
  898.           end>
  899.         HighlightPos = cpAny
  900.         IgnoreAsParent = False
  901.       end
  902.       item
  903.         DisplayName = 'repeat'
  904.         ConditionList = <
  905.           item
  906.             TagList.Strings = (
  907.               'repeat')
  908.             TokenTypes = 4
  909.             IgnoreCase = True
  910.           end>
  911.         BlockEnd = 'until'
  912.         DisplayInTree = False
  913.         HighlightPos = cpAny
  914.         DrawStaple = True
  915.         CollapseFmt = 'repeat ...'
  916.         IgnoreAsParent = False
  917.       end
  918.       item
  919.         DisplayName = 'program'
  920.         ConditionList = <
  921.           item
  922.             TagList.Strings = (
  923.               'program'
  924.               'unit')
  925.             TokenTypes = 4
  926.             IgnoreCase = True
  927.           end>
  928.         IdentIndex = -1
  929.         BlockEnd = 'Unit end'
  930.         EndOfTextClose = True
  931.         HighlightPos = cpAny
  932.         CollapseFmt = '%s0 %s-1'
  933.         TreeItemImage = 0
  934.         IgnoreAsParent = False
  935.       end
  936.       item
  937.         DisplayName = 'class declaration'
  938.         BlockName = 'class declaration'
  939.         NotParent = True
  940.         ConditionList = <>
  941.         BlockEnd = 'end of type'
  942.         NameFmt = '%s-2 %s0'
  943.         RefToCondEnd = True
  944.         HighlightPos = cpAny
  945.         CollapseFmt = '%s-2 %s0'
  946.         GrammaRuleName = 'ClassDecl'
  947.         TreeItemStyle = 'class (tree)'
  948.         TreeItemImage = 1
  949.         IgnoreAsParent = False
  950.       end
  951.       item
  952.         DisplayName = 'Empty class'
  953.         ConditionList = <>
  954.         NotCollapsed = True
  955.         NameFmt = '%s-2 %s0'
  956.         RefToCondEnd = True
  957.         HighlightPos = cpAny
  958.         CollapseFmt = '%s-2 %s0'
  959.         NoEndRule = True
  960.         GrammaRuleName = 'EmptyClass'
  961.         TreeItemImage = 4
  962.         IgnoreAsParent = False
  963.       end
  964.       item
  965.         DisplayName = 'Interface declaration'
  966.         BlockName = 'Interface declaration'
  967.         NotParent = True
  968.         ConditionList = <>
  969.         BlockEnd = 'end of type'
  970.         NameFmt = '%s-2 %s0'
  971.         GroupFmt = 'Interfaces'
  972.         RefToCondEnd = True
  973.         HighlightPos = cpAny
  974.         CollapseFmt = '%s-2 %s0'
  975.         GrammaRuleName = 'IntfDecl'
  976.         TreeGroupStyle = 'Group (tree)'
  977.         TreeItemImage = 2
  978.         TreeGroupImage = 0
  979.         IgnoreAsParent = False
  980.       end
  981.       item
  982.         DisplayName = 'record'
  983.         ConditionList = <
  984.           item
  985.             TagList.Strings = (
  986.               'record')
  987.             TokenTypes = 4
  988.             IgnoreCase = True
  989.           end
  990.           item
  991.             TagList.Strings = (
  992.               'packed')
  993.             CondType = tcSkip
  994.             TokenTypes = 4
  995.             IgnoreCase = True
  996.           end
  997.           item
  998.             TagList.Strings = (
  999.               '=')
  1000.             TokenTypes = 8
  1001.           end
  1002.           item
  1003.             TokenTypes = 4
  1004.           end>
  1005.         BlockEnd = 'end of type'
  1006.         NameFmt = 'record %s0'
  1007.         GroupFmt = 'Types'
  1008.         RefToCondEnd = True
  1009.         HighlightPos = cpAny
  1010.         CollapseFmt = 'record %s0'
  1011.         TreeGroupStyle = 'Group (tree)'
  1012.         TreeItemImage = 3
  1013.         TreeGroupImage = 0
  1014.         IgnoreAsParent = False
  1015.       end
  1016.       item
  1017.         DisplayName = 'Interface section'
  1018.         StyleName = 'Interface section'
  1019.         BlockName = 'program'
  1020.         StrictParent = True
  1021.         ConditionList = <
  1022.           item
  1023.             TagList.Strings = (
  1024.               'interface')
  1025.             TokenTypes = 4
  1026.             IgnoreCase = True
  1027.           end>
  1028.         BlockEnd = 'Interface section end'
  1029.         EndOfTextClose = True
  1030.         Highlight = True
  1031.         DisplayInTree = False
  1032.         NameFmt = 'Interface section'
  1033.         DynHighlight = dhRange
  1034.         HighlightPos = cpAny
  1035.         CollapseFmt = 'Interface section'
  1036.         IgnoreAsParent = False
  1037.       end
  1038.       item
  1039.         DisplayName = 'Interface section end'
  1040.         BlockType = btRangeEnd
  1041.         ConditionList = <
  1042.           item
  1043.             TagList.Strings = (
  1044.               'implementation')
  1045.             TokenTypes = 4
  1046.             IgnoreCase = True
  1047.           end>
  1048.         BlockOffset = 1
  1049.         HighlightPos = cpAny
  1050.         IgnoreAsParent = False
  1051.       end
  1052.       item
  1053.         DisplayName = 'Implementation section'
  1054.         StyleName = 'Implemenation Section'
  1055.         ConditionList = <
  1056.           item
  1057.             TagList.Strings = (
  1058.               'implementation')
  1059.             TokenTypes = 4
  1060.             IgnoreCase = True
  1061.           end>
  1062.         BlockEnd = 'Unit end'
  1063.         EndOfTextClose = True
  1064.         Highlight = True
  1065.         DisplayInTree = False
  1066.         DynHighlight = dhRange
  1067.         HighlightPos = cpAny
  1068.         CollapseFmt = 'Implementation section'
  1069.         IgnoreAsParent = False
  1070.       end
  1071.       item
  1072.         DisplayName = 'finalization'
  1073.         ConditionList = <
  1074.           item
  1075.             TagList.Strings = (
  1076.               'finalization')
  1077.             TokenTypes = 4
  1078.             IgnoreCase = True
  1079.           end>
  1080.         EndOfTextClose = True
  1081.         DisplayInTree = False
  1082.         HighlightPos = cpAny
  1083.         CollapseFmt = '%s0'
  1084.         IgnoreAsParent = False
  1085.       end
  1086.       item
  1087.         DisplayName = 'Unit end'
  1088.         BlockType = btRangeEnd
  1089.         ConditionList = <
  1090.           item
  1091.             TagList.Strings = (
  1092.               '.')
  1093.             TokenTypes = 8
  1094.           end
  1095.           item
  1096.             TagList.Strings = (
  1097.               'end')
  1098.             TokenTypes = 4
  1099.             IgnoreCase = True
  1100.           end>
  1101.         BlockOffset = 2
  1102.         HighlightPos = cpAny
  1103.         IgnoreAsParent = False
  1104.       end
  1105.       item
  1106.         DisplayName = 'Function separator'
  1107.         StyleName = 'Function separator'
  1108.         BlockName = 'Implementation section'
  1109.         StrictParent = True
  1110.         BlockType = btLineBreak
  1111.         ConditionList = <
  1112.           item
  1113.             TagList.Strings = (
  1114.               'constructor'
  1115.               'destructor'
  1116.               'function'
  1117.               'procedure')
  1118.             TokenTypes = 4
  1119.             IgnoreCase = True
  1120.           end>
  1121.         HighlightPos = cpAny
  1122.         IgnoreAsParent = False
  1123.       end
  1124.       item
  1125.         DisplayName = 'Internal function'
  1126.         BlockName = 'function of class'
  1127.         ConditionList = <
  1128.           item
  1129.             TokenTypes = 4
  1130.           end
  1131.           item
  1132.             TagList.Strings = (
  1133.               'function'
  1134.               'procedure')
  1135.             TokenTypes = 4
  1136.             IgnoreCase = True
  1137.           end>
  1138.         BlockOffset = 1
  1139.         BlockEnd = 'End of internal'
  1140.         HighlightPos = cpAny
  1141.         CollapseFmt = '%s1 %s0'
  1142.         TreeItemStyle = 'Intern. function (tree)'
  1143.         TreeItemImage = 5
  1144.         IgnoreAsParent = False
  1145.       end
  1146.       item
  1147.         DisplayName = 'End of internal'
  1148.         BlockName = 'Internal function'
  1149.         StrictParent = True
  1150.         BlockType = btRangeEnd
  1151.         ConditionList = <
  1152.           item
  1153.             TagList.Strings = (
  1154.               ';')
  1155.             TokenTypes = 8
  1156.           end
  1157.           item
  1158.             TagList.Strings = (
  1159.               'end'
  1160.               'forward')
  1161.             TokenTypes = 4
  1162.             IgnoreCase = True
  1163.           end>
  1164.         HighlightPos = cpAny
  1165.         CancelNextRules = True
  1166.         IgnoreAsParent = False
  1167.       end
  1168.       item
  1169.         DisplayName = 'forward_func'
  1170.         BlockType = btRangeEnd
  1171.         ConditionList = <
  1172.           item
  1173.             TokenTypes = 1024
  1174.             IgnoreCase = True
  1175.           end>
  1176.         BlockEnd = 'Single function'
  1177.         IgnoreAsParent = False
  1178.       end
  1179.       item
  1180.         DisplayName = 'Single function'
  1181.         StyleName = 'Current function'
  1182.         BlockName = 'Implementation section'
  1183.         StrictParent = True
  1184.         ConditionList = <
  1185.           item
  1186.             TagList.Strings = (
  1187.               '('
  1188.               ':'
  1189.               ';')
  1190.             TokenTypes = 8
  1191.           end
  1192.           item
  1193.             TokenTypes = 4
  1194.           end
  1195.           item
  1196.             TagList.Strings = (
  1197.               'function'
  1198.               'procedure')
  1199.             TokenTypes = 4
  1200.             IgnoreCase = True
  1201.           end>
  1202.         IdentIndex = 1
  1203.         BlockOffset = 2
  1204.         BlockEnd = 'End of function'
  1205.         Highlight = True
  1206.         NameFmt = '%s2 %s1'
  1207.         GroupFmt = 'Functions'
  1208.         DynHighlight = dhRange
  1209.         HighlightPos = cpRange
  1210.         CollapseFmt = '%s2 %s1'
  1211.         TreeGroupStyle = 'Group (tree)'
  1212.         TreeItemImage = 5
  1213.         TreeGroupImage = 0
  1214.         IgnoreAsParent = False
  1215.       end
  1216.       item
  1217.         DisplayName = 'End of function'
  1218.         BlockName = 'Single function'
  1219.         StrictParent = True
  1220.         BlockType = btRangeEnd
  1221.         ConditionList = <
  1222.           item
  1223.             TagList.Strings = (
  1224.               ';')
  1225.             TokenTypes = 1032
  1226.           end
  1227.           item
  1228.             TagList.Strings = (
  1229.               'end'
  1230.               'forward')
  1231.             TokenTypes = 4
  1232.             IgnoreCase = True
  1233.           end>
  1234.         HighlightPos = cpAny
  1235.         CancelNextRules = True
  1236.         IgnoreAsParent = False
  1237.       end
  1238.       item
  1239.         DisplayName = 'function of class'
  1240.         StyleName = 'Current function'
  1241.         BlockName = 'Implementation section'
  1242.         StrictParent = True
  1243.         ConditionList = <
  1244.           item
  1245.             TagList.Strings = (
  1246.               '.')
  1247.             TokenTypes = 8
  1248.           end
  1249.           item
  1250.             TokenTypes = 4
  1251.           end
  1252.           item
  1253.             TagList.Strings = (
  1254.               'constructor'
  1255.               'destructor'
  1256.               'function'
  1257.               'procedure')
  1258.             TokenTypes = 4
  1259.             IgnoreCase = True
  1260.           end>
  1261.         IdentIndex = -1
  1262.         BlockOffset = 2
  1263.         BlockEnd = 'End of class function'
  1264.         Highlight = True
  1265.         NameFmt = '%s-1'
  1266.         GroupFmt = 'class %s1'
  1267.         DynHighlight = dhRange
  1268.         HighlightPos = cpRange
  1269.         CollapseFmt = '%s2 %s1%s0%s-1'
  1270.         TreeItemImage = 6
  1271.         IgnoreAsParent = False
  1272.       end
  1273.       item
  1274.         DisplayName = 'End of class function'
  1275.         BlockName = 'function of class'
  1276.         StrictParent = True
  1277.         BlockType = btRangeEnd
  1278.         ConditionList = <
  1279.           item
  1280.             TagList.Strings = (
  1281.               ';')
  1282.             TokenTypes = 8
  1283.           end
  1284.           item
  1285.             TagList.Strings = (
  1286.               'end')
  1287.             TokenTypes = 4
  1288.             IgnoreCase = True
  1289.           end>
  1290.         HighlightPos = cpAny
  1291.         IgnoreAsParent = False
  1292.       end
  1293.       item
  1294.         DisplayName = 'Internal function 2'
  1295.         BlockName = 'Single function'
  1296.         ConditionList = <
  1297.           item
  1298.             TokenTypes = 4
  1299.           end
  1300.           item
  1301.             TagList.Strings = (
  1302.               'function'
  1303.               'procedure')
  1304.             TokenTypes = 4
  1305.             IgnoreCase = True
  1306.           end>
  1307.         BlockOffset = 1
  1308.         BlockEnd = 'End of internal 2'
  1309.         HighlightPos = cpAny
  1310.         CollapseFmt = '%s0 %s-1'
  1311.         TreeItemStyle = 'Intern. function (tree)'
  1312.         TreeItemImage = 5
  1313.         IgnoreAsParent = False
  1314.       end
  1315.       item
  1316.         DisplayName = 'End of internal 2'
  1317.         BlockName = 'Internal function 2'
  1318.         StrictParent = True
  1319.         BlockType = btRangeEnd
  1320.         ConditionList = <
  1321.           item
  1322.             TagList.Strings = (
  1323.               ';')
  1324.           end
  1325.           item
  1326.             TagList.Strings = (
  1327.               'end'
  1328.               'forward')
  1329.             TokenTypes = 1028
  1330.             IgnoreCase = True
  1331.           end>
  1332.         HighlightPos = cpAny
  1333.         IgnoreAsParent = False
  1334.       end
  1335.       item
  1336.         DisplayName = 'end of type'
  1337.         BlockType = btRangeEnd
  1338.         ConditionList = <
  1339.           item
  1340.             TagList.Strings = (
  1341.               ';')
  1342.             TokenTypes = 8
  1343.           end
  1344.           item
  1345.             TagList.Strings = (
  1346.               'end')
  1347.             TokenTypes = 4
  1348.             IgnoreCase = True
  1349.           end>
  1350.         HighlightPos = cpAny
  1351.         CancelNextRules = True
  1352.         IgnoreAsParent = False
  1353.       end
  1354.       item
  1355.         DisplayName = '('
  1356.         StyleName = 'Current block'
  1357.         ConditionList = <
  1358.           item
  1359.             TagList.Strings = (
  1360.               '(')
  1361.             TokenTypes = 8
  1362.           end>
  1363.         BlockEnd = ')'
  1364.         NotCollapsed = True
  1365.         DisplayInTree = False
  1366.         DynHighlight = dhBound
  1367.         HighlightPos = cpBoundTagBegin
  1368.         DynSelectMin = True
  1369.         IgnoreAsParent = False
  1370.       end
  1371.       item
  1372.         DisplayName = ')'
  1373.         BlockType = btRangeEnd
  1374.         ConditionList = <
  1375.           item
  1376.             TagList.Strings = (
  1377.               ')')
  1378.             TokenTypes = 8
  1379.           end>
  1380.         HighlightPos = cpAny
  1381.         IgnoreAsParent = False
  1382.       end
  1383.       item
  1384.         DisplayName = '['
  1385.         StyleName = 'Current block'
  1386.         ConditionList = <
  1387.           item
  1388.             TagList.Strings = (
  1389.               '[')
  1390.             TokenTypes = 8
  1391.           end>
  1392.         BlockEnd = ']'
  1393.         NotCollapsed = True
  1394.         DisplayInTree = False
  1395.         DynHighlight = dhBound
  1396.         HighlightPos = cpBoundTagBegin
  1397.         DynSelectMin = True
  1398.         IgnoreAsParent = False
  1399.       end
  1400.       item
  1401.         DisplayName = ']'
  1402.         BlockType = btRangeEnd
  1403.         ConditionList = <
  1404.           item
  1405.             TagList.Strings = (
  1406.               ']')
  1407.             TokenTypes = 8
  1408.           end>
  1409.         HighlightPos = cpAny
  1410.         IgnoreAsParent = False
  1411.       end
  1412.       item
  1413.         DisplayName = 'Enum'
  1414.         BlockName = 'Interface section'
  1415.         ConditionList = <
  1416.           item
  1417.             TagList.Strings = (
  1418.               '(')
  1419.             TokenTypes = 8
  1420.           end
  1421.           item
  1422.             TagList.Strings = (
  1423.               '=')
  1424.             TokenTypes = 8
  1425.           end
  1426.           item
  1427.             TokenTypes = 4
  1428.           end
  1429.           item
  1430.             TagList.Strings = (
  1431.               '.'
  1432.               ';'
  1433.               'type')
  1434.             CondType = tcMask
  1435.             TokenTypes = 14
  1436.           end>
  1437.         IdentIndex = 2
  1438.         BlockOffset = 2
  1439.         BlockEnd = 'Enum end'
  1440.         NameFmt = 'enum %s2'
  1441.         GroupFmt = 'Types'
  1442.         HighlightPos = cpAny
  1443.         CollapseFmt = 'enum %s2 ...'
  1444.         TreeItemImage = 3
  1445.         TreeGroupImage = 0
  1446.         IgnoreAsParent = False
  1447.       end
  1448.       item
  1449.         DisplayName = 'Enum end'
  1450.         BlockType = btRangeEnd
  1451.         ConditionList = <
  1452.           item
  1453.             TagList.Strings = (
  1454.               ';')
  1455.             TokenTypes = 8
  1456.           end
  1457.           item
  1458.             TagList.Strings = (
  1459.               ')')
  1460.             TokenTypes = 8
  1461.           end>
  1462.         HighlightPos = cpAny
  1463.         IgnoreAsParent = False
  1464.       end
  1465.       item
  1466.         DisplayName = 'Set'
  1467.         ConditionList = <
  1468.           item
  1469.             TagList.Strings = (
  1470.               'set')
  1471.             TokenTypes = 4
  1472.             IgnoreCase = True
  1473.           end
  1474.           item
  1475.             TagList.Strings = (
  1476.               '=')
  1477.             TokenTypes = 8
  1478.           end
  1479.           item
  1480.             TokenTypes = 4
  1481.           end>
  1482.         BlockEnd = 'Set end'
  1483.         NameFmt = 'set %s0'
  1484.         GroupFmt = 'Types'
  1485.         RefToCondEnd = True
  1486.         TreeItemImage = 3
  1487.         TreeGroupImage = 0
  1488.         IgnoreAsParent = False
  1489.       end
  1490.       item
  1491.         DisplayName = 'Set end'
  1492.         BlockType = btRangeEnd
  1493.         ConditionList = <
  1494.           item
  1495.             TagList.Strings = (
  1496.               ';')
  1497.             TokenTypes = 8
  1498.           end>
  1499.         IgnoreAsParent = False
  1500.       end>
  1501.     CodeTemplates = <
  1502.       item
  1503.         Name = 'be'
  1504.         Description = 'begin end'
  1505.         Code.Strings = (
  1506.           'begin'
  1507.           '  <caret>'
  1508.           'end;')
  1509.         Advanced = True
  1510.       end
  1511.       item
  1512.         Name = 'arrayd'
  1513.         Description = 'array declaration (var)'
  1514.         Code.Strings = (
  1515.           'array[0..|] of ;')
  1516.       end
  1517.       item
  1518.         Name = 'arrayc'
  1519.         Description = 'array declaration (const)'
  1520.         Code.Strings = (
  1521.           'array[0..|] of = ();')
  1522.       end
  1523.       item
  1524.         Name = 'cases'
  1525.         Description = 'case statement'
  1526.         Code.Strings = (
  1527.           'case | of'
  1528.           '  : ;'
  1529.           '  : ;'
  1530.           'end;')
  1531.       end
  1532.       item
  1533.         Name = 'casee'
  1534.         Description = 'case statement (with else)'
  1535.         Code.Strings = (
  1536.           'case | of'
  1537.           '  : ;'
  1538.           '  : ;'
  1539.           'else ;'
  1540.           'end;')
  1541.       end
  1542.       item
  1543.         Name = 'classf'
  1544.         Description = 'class declaration (all parts)'
  1545.         Code.Strings = (
  1546.           'T| = class(T)'
  1547.           'private'
  1548.           ''
  1549.           'protected'
  1550.           ''
  1551.           'public'
  1552.           ''
  1553.           'published'
  1554.           ''
  1555.           'end;')
  1556.       end
  1557.       item
  1558.         Name = 'classd'
  1559.         Description = 'class declaration (no parts)'
  1560.         Code.Strings = (
  1561.           'T| = class(T)'
  1562.           ''
  1563.           'end;')
  1564.       end
  1565.       item
  1566.         Name = 'classc'
  1567.         Description = 'class declaration (with Create/Destroy overrides)'
  1568.         Code.Strings = (
  1569.           'T| = class(T)'
  1570.           'private'
  1571.           ''
  1572.           'protected'
  1573.           ''
  1574.           'public'
  1575.           '  constructor Create; override;'
  1576.           '  destructor Destroy; override;'
  1577.           'published'
  1578.           ''
  1579.           'end;')
  1580.       end
  1581.       item
  1582.         Name = 'fors'
  1583.         Description = 'for (no begin/end)'
  1584.         Code.Strings = (
  1585.           'for | :=  to  do')
  1586.       end
  1587.       item
  1588.         Name = 'forb'
  1589.         Description = 'for statement'
  1590.         Code.Strings = (
  1591.           'for | :=  to  do'
  1592.           'begin'
  1593.           ''
  1594.           'end;')
  1595.       end
  1596.       item
  1597.         Name = 'function'
  1598.         Description = 'function declaration'
  1599.         Code.Strings = (
  1600.           'function |(): ;'
  1601.           'begin'
  1602.           ''
  1603.           'end;')
  1604.       end
  1605.       item
  1606.         Name = 'ifs'
  1607.         Description = 'if (no begin/end)'
  1608.         Code.Strings = (
  1609.           'if | then')
  1610.       end
  1611.       item
  1612.         Name = 'ifb'
  1613.         Description = 'if statement'
  1614.         Code.Strings = (
  1615.           'if | then'
  1616.           'begin'
  1617.           ''
  1618.           'end;')
  1619.       end
  1620.       item
  1621.         Name = 'ife'
  1622.         Description = 'if then (no begin/end) else (no begin/end)'
  1623.         Code.Strings = (
  1624.           'if | then'
  1625.           ''
  1626.           'else')
  1627.       end
  1628.       item
  1629.         Name = 'ifeb'
  1630.         Description = 'if then else'
  1631.         Code.Strings = (
  1632.           'if | then'
  1633.           'begin'
  1634.           ''
  1635.           'end'
  1636.           'else'
  1637.           'begin'
  1638.           ''
  1639.           'end;')
  1640.       end
  1641.       item
  1642.         Name = 'procedure'
  1643.         Description = 'procedure declaration'
  1644.         Code.Strings = (
  1645.           'procedure |();'
  1646.           'begin'
  1647.           ''
  1648.           'end;')
  1649.       end
  1650.       item
  1651.         Name = 'trye'
  1652.         Description = 'try except'
  1653.         Code.Strings = (
  1654.           'try'
  1655.           '  |'
  1656.           'except'
  1657.           ''
  1658.           'end;')
  1659.       end
  1660.       item
  1661.         Name = 'tryf'
  1662.         Description = 'try finally'
  1663.         Code.Strings = (
  1664.           'try'
  1665.           '  |'
  1666.           'finally'
  1667.           ''
  1668.           'end;')
  1669.       end
  1670.       item
  1671.         Name = 'trycf'
  1672.         Description = 'try finally (with Create/Free)'
  1673.         Code.Strings = (
  1674.           '|variable := typename.Create;'
  1675.           'try'
  1676.           ''
  1677.           'finally'
  1678.           '  variable.Free;'
  1679.           'end;')
  1680.       end
  1681.       item
  1682.         Name = 'whileb'
  1683.         Description = 'while statement'
  1684.         Code.Strings = (
  1685.           'while | do'
  1686.           'begin'
  1687.           ''
  1688.           'end;')
  1689.       end
  1690.       item
  1691.         Name = 'whiles'
  1692.         Description = 'while (no begin)'
  1693.         Code.Strings = (
  1694.           'while | do')
  1695.       end
  1696.       item
  1697.         Name = 'withb'
  1698.         Description = 'with statement'
  1699.         Code.Strings = (
  1700.           'with | do'
  1701.           'begin'
  1702.           ''
  1703.           'end;')
  1704.       end
  1705.       item
  1706.         Name = 'withs'
  1707.         Description = 'with (no begin)'
  1708.         Code.Strings = (
  1709.           'with | do')
  1710.       end
  1711.       item
  1712.         Name = 'prop'
  1713.         Description = 'property'
  1714.         Code.Strings = (
  1715.           'property | read  write;')
  1716.       end
  1717.       item
  1718.         Name = 't'
  1719.         Description = 'Test'
  1720.         Code.Strings = (
  1721.           'test <caret> and more <marker> <marker>'
  1722.           'if <marker>'
  1723.           'then <marker>')
  1724.         Advanced = True
  1725.       end>
  1726.     SubAnalyzers = <
  1727.       item
  1728.         DisplayName = 'asm section'
  1729.         StartExpression = 'asm\b'#13#10
  1730.         EndExpression = 'end'#13#10
  1731.         SyntAnalyzer = SyntAnalyzer13
  1732.       end>
  1733.     SampleText.Strings = (
  1734.       'implementation'
  1735.       '{Syntax highlighting}'
  1736.       'procedure TForm1.Button1Click(Sender: TObject);'
  1737.       'var'
  1738.       ' Number: integer;'
  1739.       ' FloatNumber: double;'
  1740.       'begin'
  1741.       ' Number := 123;  // View integer number style'
  1742.       
  1743.         ' Caprion := '#39'This Number is '#39' + IntToStr(Number); // View string' +
  1744.         ' style'
  1745.       ' Inc(Number, $1FA7); // View HEX style'
  1746.       ' {Assembler style}'
  1747.       ' asm'
  1748.       '   MOV  AX, 1234H'
  1749.       '   MOV Number, AX'
  1750.       ' end;'
  1751.       'end;')
  1752.     TokenTypeNames.Strings = (
  1753.       'Unknown'
  1754.       'Comment'
  1755.       'Identifier'
  1756.       'Symbol'
  1757.       'String'
  1758.       'Integer const'
  1759.       'Float const'
  1760.       'Hex const'
  1761.       'Char const'
  1762.       'Preprocessor'
  1763.       'Forward')
  1764.     Gramma.Gramma = 
  1765.       'Skip = <Comment> | <Preprocessor>;'#13#10#13#10'// Class declaration'#13#10'Clas' +
  1766.       'sDecl = <Identifier> '#39'='#39' '#39'class'#39' InheritedList? <Identifier>;'#13#10#13 +
  1767.       #10'EmptyClass = <Identifier> '#39'='#39' "class" InheritedList '#39';'#39'; '#13#10#13#10'//' +
  1768.       ' Interface declaration'#13#10'IntfDecl = <Identifier> '#39'='#39' ("interface"' +
  1769.       ' | "dispinterface") InheritedList? IntfNextToken;'#13#10'IntfNextToken' +
  1770.       ' = '#39'['#39' | <Identifier>; '#13#10#13#10'InheritedList = '#39'('#39' IdentList '#39')'#39';'#13#10'I' +
  1771.       'dentList = <Identifier> ('#39','#39' <Identifier>)*;'#13#10
  1772.     MarkedBlockStyle = 'Marked block'
  1773.     SearchMatchStyle = 'Search Match'
  1774.     CurrentLineStyle = 'Current Line'
  1775.     DefaultStyleName = 'Default'
  1776.     Extentions = 'pas inc dpr dpk'
  1777.     LexerName = 'Pascal'
  1778.     LineComment = '//'
  1779.   end
  1780.   object SyntAnalyzer2: TLibSyntAnalyzer
  1781.     Formats = <
  1782.       item
  1783.         DisplayName = 'Default'
  1784.         Font.Charset = DEFAULT_CHARSET
  1785.         Font.Color = clWindowText
  1786.         Font.Height = -13
  1787.         Font.Name = 'Courier New'
  1788.         Font.Style = []
  1789.         FormatType = ftBackGround
  1790.       end
  1791.       item
  1792.         DisplayName = 'Marked block'
  1793.         Font.Charset = DEFAULT_CHARSET
  1794.         Font.Color = clHighlightText
  1795.         Font.Height = -13
  1796.         Font.Name = 'Courier New'
  1797.         Font.Style = []
  1798.         BgColor = clHighlight
  1799.       end
  1800.       item
  1801.         DisplayName = 'Symbol'
  1802.         Font.Charset = DEFAULT_CHARSET
  1803.         Font.Color = clMaroon
  1804.         Font.Height = -13
  1805.         Font.Name = 'Courier New'
  1806.         Font.Style = [fsBold]
  1807.       end
  1808.       item
  1809.         DisplayName = 'Number'
  1810.         Font.Charset = DEFAULT_CHARSET
  1811.         Font.Color = clNavy
  1812.         Font.Height = -13
  1813.         Font.Name = 'Courier New'
  1814.         Font.Style = [fsBold]
  1815.       end
  1816.       item
  1817.         DisplayName = 'String'
  1818.         Font.Charset = DEFAULT_CHARSET
  1819.         Font.Color = clBlue
  1820.         Font.Height = -13
  1821.         Font.Name = 'Courier New'
  1822.         Font.Style = []
  1823.       end
  1824.       item
  1825.         DisplayName = 'Identifier'
  1826.         Font.Charset = DEFAULT_CHARSET
  1827.         Font.Color = clWindowText
  1828.         Font.Height = -13
  1829.         Font.Name = 'Courier New'
  1830.         Font.Style = []
  1831.       end
  1832.       item
  1833.         DisplayName = 'Reserved word'
  1834.         Font.Charset = DEFAULT_CHARSET
  1835.         Font.Color = clWindowText
  1836.         Font.Height = -13
  1837.         Font.Name = 'Courier New'
  1838.         Font.Style = [fsBold]
  1839.       end
  1840.       item
  1841.         DisplayName = 'Comment'
  1842.         Font.Charset = DEFAULT_CHARSET
  1843.         Font.Color = clRed
  1844.         Font.Height = -13
  1845.         Font.Name = 'Courier New'
  1846.         Font.Style = [fsBold]
  1847.         FormatType = ftColor
  1848.       end
  1849.       item
  1850.         DisplayName = 'Preprocessor'
  1851.         Font.Charset = DEFAULT_CHARSET
  1852.         Font.Color = clGreen
  1853.         Font.Height = -13
  1854.         Font.Name = 'Courier New'
  1855.         Font.Style = [fsItalic]
  1856.         FormatType = ftColor
  1857.       end>
  1858.     TokenRules = <
  1859.       item
  1860.         DisplayName = 'String'
  1861.         StyleName = 'String'
  1862.         TokenType = 4
  1863.         Expression = '"(.|\\")*?("|$)'
  1864.         ColumnFrom = 0
  1865.         ColumnTo = 0
  1866.       end
  1867.       item
  1868.         DisplayName = 'Any name'
  1869.         StyleName = 'Identifier'
  1870.         TokenType = 2
  1871.         Expression = '\~?[a-z_]\w*'
  1872.         ColumnFrom = 0
  1873.         ColumnTo = 0
  1874.       end
  1875.       item
  1876.         DisplayName = 'HEX'
  1877.         StyleName = 'Number'
  1878.         TokenType = 7
  1879.         Expression = '0x[\da-f]*'
  1880.         ColumnFrom = 0
  1881.         ColumnTo = 0
  1882.       end
  1883.       item
  1884.         DisplayName = 'Float'
  1885.         StyleName = 'Number'
  1886.         TokenType = 6
  1887.         Expression = 
  1888.           '#with exp. dot is optional '#13#10'\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'#witho' +
  1889.           'ut exp. dot is required'#13#10'\d+ \. \d+'
  1890.         ColumnFrom = 0
  1891.         ColumnTo = 0
  1892.       end
  1893.       item
  1894.         DisplayName = 'Integer'
  1895.         StyleName = 'Number'
  1896.         TokenType = 5
  1897.         Expression = '\d+'
  1898.         ColumnFrom = 0
  1899.         ColumnTo = 0
  1900.       end
  1901.       item
  1902.         DisplayName = 'Define'
  1903.         StyleName = 'Preprocessor'
  1904.         TokenType = 9
  1905.         Expression = '(?-i)'#13#10'\#define(.*\\\s*\n)*'#13#10'.*  # last line'#13#10#13#10
  1906.         ColumnFrom = 0
  1907.         ColumnTo = 0
  1908.       end
  1909.       item
  1910.         DisplayName = 'Preprocessor'
  1911.         StyleName = 'Preprocessor'
  1912.         TokenType = 9
  1913.         Expression = '\#.*'
  1914.         ColumnFrom = 0
  1915.         ColumnTo = 0
  1916.       end
  1917.       item
  1918.         DisplayName = 'Comment 1'
  1919.         StyleName = 'Comment'
  1920.         TokenType = 1
  1921.         Expression = '(?s)/\*.*?(\*/|\Z)'
  1922.         ColumnFrom = 0
  1923.         ColumnTo = 0
  1924.       end
  1925.       item
  1926.         DisplayName = 'Comment 2'
  1927.         StyleName = 'Comment'
  1928.         TokenType = 1
  1929.         Expression = '//.*'
  1930.         ColumnFrom = 0
  1931.         ColumnTo = 0
  1932.       end
  1933.       item
  1934.         DisplayName = 'Symbol'
  1935.         StyleName = 'Symbol'
  1936.         TokenType = 3
  1937.         Expression = '[/\+\-\*:=<>&/\|\^\.]+'
  1938.         ColumnFrom = 0
  1939.         ColumnTo = 0
  1940.       end
  1941.       item
  1942.         DisplayName = 'Single symbol'
  1943.         StyleName = 'Symbol'
  1944.         TokenType = 3
  1945.         Expression = '[\{\}\(\)\[\],;]'
  1946.         ColumnFrom = 0
  1947.         ColumnTo = 0
  1948.       end
  1949.       item
  1950.         DisplayName = 'Char'
  1951.         StyleName = 'String'
  1952.         TokenType = 8
  1953.         Expression = #39'.*?('#39'|$)'
  1954.         ColumnFrom = 0
  1955.         ColumnTo = 0
  1956.       end>
  1957.     BlockRules = <
  1958.       item
  1959.         DisplayName = 'Key words'
  1960.         StyleName = 'Reserved word'
  1961.         BlockType = btTagDetect
  1962.         ConditionList = <
  1963.           item
  1964.             TagList.Strings = (
  1965.               '__asm'
  1966.               '__automated'
  1967.               '__cdecl'
  1968.               '__classid'
  1969.               '__closure'
  1970.               '__declspec'
  1971.               '__dispid'
  1972.               '__except'
  1973.               '__export'
  1974.               '__fastcall'
  1975.               '__finally'
  1976.               '__import'
  1977.               '__inline'
  1978.               '__int64'
  1979.               '__msfastcall'
  1980.               '__msreturn'
  1981.               '__pascal'
  1982.               '__property'
  1983.               '__published'
  1984.               '__stdcall'
  1985.               '__try'
  1986.               '__uuidof'
  1987.               '_asm'
  1988.               '_cdecl'
  1989.               '_export'
  1990.               '_fastcall'
  1991.               '_import'
  1992.               '_pascal'
  1993.               '_stdcall'
  1994.               'asm'
  1995.               'auto'
  1996.               'bool'
  1997.               'break'
  1998.               'case'
  1999.               'catch'
  2000.               'cdecl'
  2001.               'char'
  2002.               'class'
  2003.               'const'
  2004.               'continue'
  2005.               'default'
  2006.               'delete'
  2007.               'do'
  2008.               'double'
  2009.               'else'
  2010.               'enum'
  2011.               'explicit'
  2012.               'export'
  2013.               'extern'
  2014.               'false'
  2015.               'float'
  2016.               'for'
  2017.               'friend'
  2018.               'goto'
  2019.               'if'
  2020.               'inline'
  2021.               'int'
  2022.               'long'
  2023.               'mutable'
  2024.               'new'
  2025.               'operator'
  2026.               'pascal'
  2027.               'private'
  2028.               'protected'
  2029.               'public'
  2030.               'register'
  2031.               'return'
  2032.               'short'
  2033.               'signed'
  2034.               'sizeof'
  2035.               'static'
  2036.               'struct'
  2037.               'switch'
  2038.               'this'
  2039.               'throw'
  2040.               'true'
  2041.               'try'
  2042.               'typedef'
  2043.               'typeid'
  2044.               'typename'
  2045.               'union'
  2046.               'unsigned'
  2047.               'uuid'
  2048.               'virtual'
  2049.               'void'
  2050.               'volatile'
  2051.               'wchar_t'
  2052.               'while')
  2053.             TokenTypes = 4
  2054.           end>
  2055.         HighlightPos = cpAny
  2056.         IgnoreAsParent = False
  2057.       end
  2058.       item
  2059.         DisplayName = '#if'
  2060.         ConditionList = <
  2061.           item
  2062.             TagList.Strings = (
  2063.               '#if')
  2064.             CondType = tcMask
  2065.             TokenTypes = 512
  2066.           end>
  2067.         BlockEnd = '#endif'
  2068.         DisplayInTree = False
  2069.         HighlightPos = cpAny
  2070.         CollapseFmt = '%s0'
  2071.         IgnoreAsParent = False
  2072.       end
  2073.       item
  2074.         DisplayName = '#endif'
  2075.         BlockType = btRangeEnd
  2076.         ConditionList = <
  2077.           item
  2078.             TagList.Strings = (
  2079.               '#endif')
  2080.             TokenTypes = 512
  2081.           end>
  2082.         HighlightPos = cpAny
  2083.         IgnoreAsParent = False
  2084.       end
  2085.       item
  2086.         DisplayName = 'End'
  2087.         BlockType = btRangeEnd
  2088.         ConditionList = <
  2089.           item
  2090.             TagList.Strings = (
  2091.               '}')
  2092.             TokenTypes = 8
  2093.           end>
  2094.         HighlightPos = cpAny
  2095.         IgnoreAsParent = False
  2096.       end
  2097.       item
  2098.         DisplayName = 'function begin'
  2099.         StrictParent = True
  2100.         ConditionList = <
  2101.           item
  2102.             TagList.Strings = (
  2103.               '{')
  2104.             TokenTypes = 8
  2105.           end
  2106.           item
  2107.             TagList.Strings = (
  2108.               ')')
  2109.             TokenTypes = 8
  2110.           end
  2111.           item
  2112.             CondType = tcSkip
  2113.           end
  2114.           item
  2115.             TagList.Strings = (
  2116.               '(')
  2117.             TokenTypes = 8
  2118.           end
  2119.           item
  2120.             TokenTypes = 4
  2121.           end
  2122.           item
  2123.             TagList.Strings = (
  2124.               '::')
  2125.             CondType = tcNotEqual
  2126.             TokenTypes = 8
  2127.           end>
  2128.         IdentIndex = -1
  2129.         BlockOffset = -1
  2130.         BlockEnd = 'function end'
  2131.         RefToCondEnd = True
  2132.         HighlightPos = cpAny
  2133.         IgnoreAsParent = False
  2134.       end
  2135.       item
  2136.         DisplayName = 'function end'
  2137.         BlockName = 'function begin'
  2138.         StrictParent = True
  2139.         BlockType = btRangeEnd
  2140.         ConditionList = <
  2141.           item
  2142.             TagList.Strings = (
  2143.               '}')
  2144.             TokenTypes = 8
  2145.           end>
  2146.         HighlightPos = cpAny
  2147.         IgnoreAsParent = False
  2148.       end
  2149.       item
  2150.         DisplayName = 'cls func'
  2151.         StrictParent = True
  2152.         ConditionList = <
  2153.           item
  2154.             TagList.Strings = (
  2155.               '{')
  2156.             TokenTypes = 8
  2157.           end
  2158.           item
  2159.             TagList.Strings = (
  2160.               ')')
  2161.             TokenTypes = 8
  2162.           end
  2163.           item
  2164.             CondType = tcSkip
  2165.           end
  2166.           item
  2167.             TagList.Strings = (
  2168.               '(')
  2169.             TokenTypes = 8
  2170.           end
  2171.           item
  2172.             TokenTypes = 4
  2173.           end
  2174.           item
  2175.             TagList.Strings = (
  2176.               '::')
  2177.             TokenTypes = 8
  2178.           end>
  2179.         BlockOffset = -1
  2180.         BlockEnd = 'cls func end'
  2181.         NameFmt = '%s-1'
  2182.         GroupFmt = '%s1'
  2183.         RefToCondEnd = True
  2184.         HighlightPos = cpAny
  2185.         IgnoreAsParent = False
  2186.       end
  2187.       item
  2188.         DisplayName = 'cls func end'
  2189.         BlockName = 'cls func'
  2190.         StrictParent = True
  2191.         BlockType = btRangeEnd
  2192.         ConditionList = <
  2193.           item
  2194.             TagList.Strings = (
  2195.               '}')
  2196.             TokenTypes = 8
  2197.           end>
  2198.         HighlightPos = cpAny
  2199.         IgnoreAsParent = False
  2200.       end
  2201.       item
  2202.         DisplayName = 'Begin'
  2203.         ConditionList = <
  2204.           item
  2205.             TagList.Strings = (
  2206.               '{')
  2207.             TokenTypes = 8
  2208.           end>
  2209.         IdentIndex = 1
  2210.         BlockEnd = 'End'
  2211.         DisplayInTree = False
  2212.         HighlightPos = cpAny
  2213.         DrawStaple = True
  2214.         CollapseFmt = '{ ... }'
  2215.         IgnoreAsParent = False
  2216.       end>
  2217.     CodeTemplates = <>
  2218.     SubAnalyzers = <>
  2219.     SampleText.Strings = (
  2220.       '/*Syntax highlighting*/'
  2221.       ''
  2222.       '#define MAX(a, b)  \'
  2223.       '     ((a > b) ? a : b) '
  2224.       '     '
  2225.       'void __fastcall TForm1->Button1Click(Sender: TObject);'
  2226.       '{'
  2227.       ' int Number = 123;  // View integer number style'
  2228.       ' double FloatNumber = 0.123e+2;  // View float number style'
  2229.       
  2230.         ' Caprion = "This Number is " + IntToStr(Number); // View string ' +
  2231.         'style'
  2232.       ' Number += 0x1FA7; // View HEX style'
  2233.       ' char c = '#39'D'#39';'
  2234.       '}')
  2235.     TokenTypeNames.Strings = (
  2236.       'Unknown'
  2237.       'Comment'
  2238.       'Identifier'
  2239.       'Symbol'
  2240.       'String'
  2241.       'Integer const'
  2242.       'Float const'
  2243.       'Hex const'
  2244.       'Char const'
  2245.       'Preprocessor')
  2246.     MarkedBlockStyle = 'Marked block'
  2247.     DefaultStyleName = 'Default'
  2248.     Extentions = 'c cpp cxx h hpp'
  2249.     LexerName = 'C++'
  2250.     LineComment = '//'
  2251.   end
  2252.   object SyntAnal22: TLibSyntAnalyzer
  2253.     Formats = <
  2254.       item
  2255.         DisplayName = 'Default'
  2256.         Font.Charset = DEFAULT_CHARSET
  2257.         Font.Color = clWindowText
  2258.         Font.Height = -13
  2259.         Font.Name = 'Courier New'
  2260.         Font.Style = []
  2261.         FormatType = ftCustomFont
  2262.       end
  2263.       item
  2264.         DisplayName = 'Text'
  2265.         Font.Charset = DEFAULT_CHARSET
  2266.         Font.Color = clBlack
  2267.         Font.Height = -13
  2268.         Font.Name = 'Courier New'
  2269.         Font.Style = []
  2270.         BorderColorLeft = clGray
  2271.         BorderColorTop = clGray
  2272.         BorderColorRight = clGray
  2273.         BorderColorBottom = clGray
  2274.         MultiLineBorder = True
  2275.       end
  2276.       item
  2277.         DisplayName = 'Tag bound'
  2278.         Font.Charset = DEFAULT_CHARSET
  2279.         Font.Color = clBlue
  2280.         Font.Height = -13
  2281.         Font.Name = 'Courier New'
  2282.         Font.Style = []
  2283.       end
  2284.       item
  2285.         DisplayName = 'Comment'
  2286.         Font.Charset = DEFAULT_CHARSET
  2287.         Font.Color = clOlive
  2288.         Font.Height = -13
  2289.         Font.Name = 'Courier New'
  2290.         Font.Style = []
  2291.       end
  2292.       item
  2293.         DisplayName = 'CDATA'
  2294.         Font.Charset = DEFAULT_CHARSET
  2295.         Font.Color = clBlue
  2296.         Font.Height = -13
  2297.         Font.Name = 'Courier New'
  2298.         Font.Style = []
  2299.       end
  2300.       item
  2301.         DisplayName = 'Tag Key'
  2302.         Font.Charset = DEFAULT_CHARSET
  2303.         Font.Color = clMaroon
  2304.         Font.Height = -13
  2305.         Font.Name = 'Courier New'
  2306.         Font.Style = []
  2307.       end
  2308.       item
  2309.         DisplayName = 'ERROR content'
  2310.         Font.Charset = DEFAULT_CHARSET
  2311.         Font.Color = clRed
  2312.         Font.Height = -13
  2313.         Font.Name = 'Courier New'
  2314.         Font.Style = [fsBold]
  2315.       end
  2316.       item
  2317.         DisplayName = 'Tag ident'
  2318.         Font.Charset = DEFAULT_CHARSET
  2319.         Font.Color = clGreen
  2320.         Font.Height = -13
  2321.         Font.Name = 'Courier New'
  2322.         Font.Style = []
  2323.       end
  2324.       item
  2325.         DisplayName = 'Tag param'
  2326.         Font.Charset = DEFAULT_CHARSET
  2327.         Font.Color = clNavy
  2328.         Font.Height = -13
  2329.         Font.Name = 'Courier New'
  2330.         Font.Style = []
  2331.       end
  2332.       item
  2333.         DisplayName = 'Tag properties'
  2334.         Font.Charset = DEFAULT_CHARSET
  2335.         Font.Color = clNavy
  2336.         Font.Height = -13
  2337.         Font.Name = 'Courier New'
  2338.         Font.Style = []
  2339.       end
  2340.       item
  2341.         DisplayName = 'Marked block'
  2342.         Font.Charset = DEFAULT_CHARSET
  2343.         Font.Color = clHighlightText
  2344.         Font.Height = -13
  2345.         Font.Name = 'Courier New'
  2346.         Font.Style = []
  2347.         BgColor = clHighlight
  2348.         FormatType = ftColor
  2349.       end
  2350.       item
  2351.         DisplayName = 'Current tag'
  2352.         Font.Charset = DEFAULT_CHARSET
  2353.         Font.Color = clWindowText
  2354.         Font.Height = -13
  2355.         Font.Name = 'Courier New'
  2356.         Font.Style = []
  2357.         BgColor = 15987699
  2358.         FormatType = ftBackGround
  2359.       end
  2360.       item
  2361.         DisplayName = 'Current Block'
  2362.         Font.Charset = DEFAULT_CHARSET
  2363.         Font.Color = clNone
  2364.         Font.Height = -13
  2365.         Font.Name = 'Courier New'
  2366.         Font.Style = [fsBold]
  2367.         BgColor = 15400927
  2368.         BorderTypeLeft = blSolid
  2369.         BorderColorLeft = clGray
  2370.         BorderTypeTop = blSolid
  2371.         BorderColorTop = clGray
  2372.         BorderTypeRight = blSolid
  2373.         BorderColorRight = clGray
  2374.         BorderTypeBottom = blSolid
  2375.         BorderColorBottom = clGray
  2376.       end
  2377.       item
  2378.         DisplayName = 'DTD element type'
  2379.         Font.Charset = DEFAULT_CHARSET
  2380.         Font.Color = clGray
  2381.         Font.Height = -13
  2382.         Font.Name = 'Courier New'
  2383.         Font.Style = []
  2384.       end
  2385.       item
  2386.         DisplayName = 'DTD bound'
  2387.         Font.Charset = DEFAULT_CHARSET
  2388.         Font.Color = clPurple
  2389.         Font.Height = -19
  2390.         Font.Name = 'Courier New'
  2391.         Font.Style = [fsBold]
  2392.         FormatType = ftCustomFont
  2393.       end
  2394.       item
  2395.         DisplayName = 'Tree item (attribute)'
  2396.         Font.Charset = DEFAULT_CHARSET
  2397.         Font.Color = clBlue
  2398.         Font.Height = -13
  2399.         Font.Name = 'Courier New'
  2400.         Font.Style = []
  2401.         BgColor = 14155775
  2402.         FormatType = ftColor
  2403.       end
  2404.       item
  2405.         DisplayName = 'Tree item (tag)'
  2406.         Font.Charset = DEFAULT_CHARSET
  2407.         Font.Color = clWindowText
  2408.         Font.Height = -13
  2409.         Font.Name = 'Courier New'
  2410.         Font.Style = [fsBold]
  2411.       end>
  2412.     TokenRules = <
  2413.       item
  2414.         DisplayName = 'PI'
  2415.         TokenType = 12
  2416.         Expression = '(?s)<\?.*?(\?>|\Z)'#13#10
  2417.         ColumnFrom = 0
  2418.         ColumnTo = 0
  2419.       end
  2420.       item
  2421.         DisplayName = 'Comment'
  2422.         StyleName = 'Comment'
  2423.         TokenType = 1
  2424.         Expression = '(?s)<!--.*?(-->|\Z)'
  2425.         ColumnFrom = 0
  2426.         ColumnTo = 0
  2427.       end
  2428.       item
  2429.         DisplayName = 'CDATA start'
  2430.         StyleName = 'CDATA'
  2431.         TokenType = 11
  2432.         Expression = '<!\[CDATA\['#13#10'#(?s)<!\[CDATA\[.*?(\]\]>|\Z)'#13#10
  2433.         ColumnFrom = 0
  2434.         ColumnTo = 0
  2435.       end
  2436.       item
  2437.         DisplayName = 'CDATA Text'
  2438.         StyleName = 'Text'
  2439.         BlockName = 'CDATA begin'
  2440.         Expression = '(?s)[^\]]*'#13#10
  2441.         ColumnFrom = 0
  2442.         ColumnTo = 0
  2443.       end
  2444.       item
  2445.         DisplayName = 'CDATA end'
  2446.         StyleName = 'Tag bound'
  2447.         BlockName = 'CDATA begin'
  2448.         TokenType = 14
  2449.         Expression = '\]\]>'#13#10
  2450.         ColumnFrom = 0
  2451.         ColumnTo = 0
  2452.       end
  2453.       item
  2454.         DisplayName = '<'
  2455.         StyleName = 'Tag bound'
  2456.         TokenType = 9
  2457.         Expression = '<[/!\-\:\?]*'
  2458.         ColumnFrom = 0
  2459.         ColumnTo = 0
  2460.       end
  2461.       item
  2462.         DisplayName = '>'
  2463.         StyleName = 'Tag bound'
  2464.         TokenType = 10
  2465.         Expression = '[/\?]?>'#13#10
  2466.         ColumnFrom = 0
  2467.         ColumnTo = 0
  2468.       end
  2469.       item
  2470.         DisplayName = 'DTD Element type'
  2471.         StyleName = 'DTD element type'
  2472.         BlockName = 'DTD element start'
  2473.         TokenType = 2
  2474.         Expression = '(?s)\((\(.*?\)|.)*?\)'#13#10
  2475.         ColumnFrom = 0
  2476.         ColumnTo = 0
  2477.       end
  2478.       item
  2479.         DisplayName = 'DTD bounds: [ ] '
  2480.         StyleName = 'DTD bound'
  2481.         BlockName = 'DOCTYPE begin'
  2482.         Expression = '[\[\]]'#13#10
  2483.         ColumnFrom = 0
  2484.         ColumnTo = 0
  2485.       end
  2486.       item
  2487.         DisplayName = 'Tag param'
  2488.         StyleName = 'Tag param'
  2489.         BlockName = 'Tag begin'
  2490.         TokenType = 4
  2491.         Expression = '(?s)".*?"'
  2492.         ColumnFrom = 0
  2493.         ColumnTo = 0
  2494.       end
  2495.       item
  2496.         DisplayName = '='
  2497.         StyleName = 'Tag bound'
  2498.         TokenType = 3
  2499.         Expression = '='#13#10
  2500.         ColumnFrom = 0
  2501.         ColumnTo = 0
  2502.       end
  2503.       item
  2504.         DisplayName = 'Tag ident'
  2505.         StyleName = 'Tag ident'
  2506.         BlockName = 'Tag begin'
  2507.         TokenType = 2
  2508.         Expression = '[^>=\?\s/]*'
  2509.         ColumnFrom = 0
  2510.         ColumnTo = 0
  2511.       end
  2512.       item
  2513.         DisplayName = 'Error content'
  2514.         StyleName = 'ERROR content'
  2515.         BlockName = 'Tag begin'
  2516.         Expression = '[^>\s]*'
  2517.         ColumnFrom = 0
  2518.         ColumnTo = 0
  2519.       end
  2520.       item
  2521.         DisplayName = '&...'
  2522.         StyleName = 'Tag Key'
  2523.         TokenType = 4
  2524.         Expression = '&\w+;'
  2525.         ColumnFrom = 0
  2526.         ColumnTo = 0
  2527.       end
  2528.       item
  2529.         DisplayName = 'Text'
  2530.         StyleName = 'Text'
  2531.         BlockName = 'CDATA begin'
  2532.         NotParent = True
  2533.         TokenType = 4
  2534.         Expression = '[^<&]*'
  2535.         ColumnFrom = 0
  2536.         ColumnTo = 0
  2537.       end>
  2538.     BlockRules = <
  2539.       item
  2540.         DisplayName = 'Tag begin'
  2541.         StyleName = 'Current tag'
  2542.         ConditionList = <
  2543.           item
  2544.             TokenTypes = 512
  2545.           end>
  2546.         BlockEnd = 'Tag end'
  2547.         NotCollapsed = True
  2548.         DisplayInTree = False
  2549.         DynHighlight = dhRangeNoBound
  2550.         HighlightPos = cpRange
  2551.         IgnoreAsParent = False
  2552.       end
  2553.       item
  2554.         DisplayName = 'Tag end'
  2555.         BlockType = btRangeEnd
  2556.         ConditionList = <
  2557.           item
  2558.             TokenTypes = 1024
  2559.           end>
  2560.         HighlightPos = cpAny
  2561.         IgnoreAsParent = False
  2562.       end
  2563.       item
  2564.         DisplayName = 'DTD element start'
  2565.         ConditionList = <
  2566.           item
  2567.             TagList.Strings = (
  2568.               'DOCTYPE')
  2569.             CondType = tcNotEqual
  2570.             TokenTypes = 4
  2571.             IgnoreCase = True
  2572.           end
  2573.           item
  2574.             TagList.Strings = (
  2575.               '<!')
  2576.             TokenTypes = 512
  2577.           end>
  2578.         BlockOffset = 1
  2579.         BlockEnd = 'DTD element end'
  2580.         NameFmt = '%s-1'
  2581.         HighlightPos = cpAny
  2582.         CollapseFmt = '< %s0 %s-1 >'
  2583.         IgnoreAsParent = False
  2584.       end
  2585.       item
  2586.         DisplayName = 'DTD element end'
  2587.         BlockType = btRangeEnd
  2588.         ConditionList = <
  2589.           item
  2590.             TokenTypes = 1024
  2591.           end>
  2592.         HighlightPos = cpAny
  2593.         CancelNextRules = True
  2594.         IgnoreAsParent = False
  2595.       end
  2596.       item
  2597.         DisplayName = 'DOCTYPE begin'
  2598.         ConditionList = <
  2599.           item
  2600.             TagList.Strings = (
  2601.               'DOCTYPE')
  2602.             TokenTypes = 4
  2603.             IgnoreCase = True
  2604.           end
  2605.           item
  2606.             TagList.Strings = (
  2607.               '<!')
  2608.             TokenTypes = 512
  2609.           end>
  2610.         BlockOffset = 1
  2611.         BlockEnd = 'DOCTYPE end'
  2612.         NameFmt = 'Document structure'
  2613.         HighlightPos = cpAny
  2614.         CollapseFmt = 'Document structure'
  2615.         IgnoreAsParent = False
  2616.       end
  2617.       item
  2618.         DisplayName = 'DOCTYPE end'
  2619.         BlockName = 'DOCTYPE begin'
  2620.         BlockType = btRangeEnd
  2621.         ConditionList = <
  2622.           item
  2623.             TagList.Strings = (
  2624.               '>')
  2625.             TokenTypes = 1024
  2626.           end>
  2627.         HighlightPos = cpAny
  2628.         IgnoreAsParent = False
  2629.       end
  2630.       item
  2631.         DisplayName = 'Tag keys'
  2632.         StyleName = 'Tag Key'
  2633.         BlockType = btTagDetect
  2634.         ConditionList = <
  2635.           item
  2636.             TokenTypes = 4
  2637.           end
  2638.           item
  2639.             TokenTypes = 512
  2640.           end>
  2641.         HighlightPos = cpAny
  2642.         IgnoreAsParent = False
  2643.       end
  2644.       item
  2645.         DisplayName = 'Tag block begin'
  2646.         StyleName = 'Current Block'
  2647.         ConditionList = <
  2648.           item
  2649.             TokenTypes = 4
  2650.           end
  2651.           item
  2652.             TagList.Strings = (
  2653.               '<')
  2654.             TokenTypes = 512
  2655.           end>
  2656.         BlockEnd = 'Tag block end'
  2657.         DynHighlight = dhBound
  2658.         HighlightPos = cpRange
  2659.         DynSelectMin = True
  2660.         CollapseFmt = ' %s0 >'
  2661.         TreeItemStyle = 'Tree item (tag)'
  2662.         IgnoreAsParent = False
  2663.       end
  2664.       item
  2665.         DisplayName = 'Tag block end'
  2666.         BlockType = btRangeEnd
  2667.         ConditionList = <
  2668.           item
  2669.             TokenTypes = 4
  2670.             IgnoreCase = True
  2671.           end
  2672.           item
  2673.             TagList.Strings = (
  2674.               '</')
  2675.             TokenTypes = 512
  2676.           end>
  2677.         SameIdent = True
  2678.         HighlightPos = cpAny
  2679.         IgnoreAsParent = False
  2680.       end
  2681.       item
  2682.         DisplayName = 'End of simple tag'
  2683.         BlockType = btRangeEnd
  2684.         ConditionList = <
  2685.           item
  2686.             TagList.Strings = (
  2687.               '/>')
  2688.             TokenTypes = 1024
  2689.           end>
  2690.         BlockEnd = 'Tag block begin'
  2691.         HighlightPos = cpAny
  2692.         IgnoreAsParent = False
  2693.       end
  2694.       item
  2695.         DisplayName = 'Comment begin'
  2696.         ConditionList = <
  2697.           item
  2698.             TokenTypes = 2
  2699.           end>
  2700.         BlockEnd = 'Comment end'
  2701.         DisplayInTree = False
  2702.         HighlightPos = cpAny
  2703.         IgnoreAsParent = False
  2704.       end
  2705.       item
  2706.         DisplayName = 'Comment end'
  2707.         BlockType = btRangeEnd
  2708.         ConditionList = <
  2709.           item
  2710.             TokenTypes = 2
  2711.           end>
  2712.         HighlightPos = cpAny
  2713.         IgnoreAsParent = False
  2714.       end
  2715.       item
  2716.         DisplayName = 'CDATA end'
  2717.         BlockName = 'CDATA begin'
  2718.         BlockType = btRangeEnd
  2719.         ConditionList = <
  2720.           item
  2721.             TokenTypes = 16384
  2722.           end>
  2723.         HighlightPos = cpAny
  2724.         IgnoreAsParent = False
  2725.       end
  2726.       item
  2727.         DisplayName = 'CDATA begin'
  2728.         ConditionList = <
  2729.           item
  2730.             TokenTypes = 2048
  2731.           end>
  2732.         BlockEnd = 'CDATA end'
  2733.         NameFmt = '%s-1'
  2734.         HighlightPos = cpAny
  2735.         CollapseFmt = 'CDATA'
  2736.         IgnoreAsParent = False
  2737.       end
  2738.       item
  2739.         DisplayName = 'Tag attribute'
  2740.         StyleName = 'Tag param'
  2741.         BlockName = 'Tag begin'
  2742.         ConditionList = <
  2743.           item
  2744.             TokenTypes = 16
  2745.           end
  2746.           item
  2747.             TokenTypes = 8
  2748.           end
  2749.           item
  2750.             TokenTypes = 4
  2751.           end>
  2752.         NameFmt = '%s0 %s-1 %s-2'
  2753.         RefToCondEnd = True
  2754.         HighlightPos = cpAny
  2755.         NoEndRule = True
  2756.         TreeItemStyle = 'Tree item (attribute)'
  2757.         IgnoreAsParent = False
  2758.       end>
  2759.     CodeTemplates = <>
  2760.     SubAnalyzers = <>
  2761.     SampleText.Strings = (
  2762.       '<?xml version="1.0" encoding="ISO-8859-1" ?>'
  2763.       ''
  2764.       '<!DOCTYPE web-app ['
  2765.       
  2766.         '  <!ELEMENT web-app (icon?, display-name?, description?, distrib' +
  2767.         'utable?,'
  2768.       '  context-param*, filter*, filter-mapping*, listener*, servlet*,'
  2769.       
  2770.         '  servlet-mapping*, session-config?, mime-mapping*, welcome-file' +
  2771.         '-list?,'
  2772.       
  2773.         '  error-page*, taglib*, resource-env-ref*, resource-ref*, securi' +
  2774.         'ty-constraint*,'
  2775.       
  2776.         '  login-config?, security-role*, env-entry*, ejb-ref*,  ejb-loca' +
  2777.         'l-ref*)>'
  2778.       '  <!ELEMENT auth-constraint (description?, role-name*)>'
  2779.       '  <!ELEMENT auth-method (#PCDATA)>'
  2780.       
  2781.         '  <!ELEMENT context-param (param-name, param-value, description?' +
  2782.         ')>'
  2783.       '  <!ELEMENT description (#PCDATA)>'
  2784.       '  <!ELEMENT display-name (#PCDATA)>'
  2785.       '  <!ELEMENT distributable EMPTY>'
  2786.       '  <!ELEMENT ejb-link (#PCDATA)>'
  2787.       
  2788.         '  <!ELEMENT ejb-local-ref (description?, ejb-ref-name, ejb-ref-t' +
  2789.         'ype,local-home, local, ejb-link?)>'
  2790.       
  2791.         '  <!ELEMENT ejb-ref (description?, ejb-ref-name, ejb-ref-type,ho' +
  2792.         'me, remote, ejb-link?)>'
  2793.       '  <!ELEMENT ejb-ref-name (#PCDATA)>'
  2794.       '  <!ELEMENT ejb-ref-type (#PCDATA)>'
  2795.       
  2796.         '  <!ELEMENT env-entry (description?, env-entry-name, env-entry-v' +
  2797.         'alue?,env-entry-type)>'
  2798.       '  <!ELEMENT env-entry-name (#PCDATA)>'
  2799.       '  <!ELEMENT env-entry-type (#PCDATA)>'
  2800.       '  <!ELEMENT env-entry-value (#PCDATA)>'
  2801.       '  <!ELEMENT error-code (#PCDATA)>'
  2802.       
  2803.         '  <!ELEMENT error-page ((error-code | exception-type), location)' +
  2804.         '>'
  2805.       '  <!ELEMENT exception-type (#PCDATA)>'
  2806.       '  <!ELEMENT extension (#PCDATA)>'
  2807.       
  2808.         '  <!ELEMENT filter (icon?, filter-name, display-name?, descripti' +
  2809.         'on?,filter-class, init-param*)>'
  2810.       '  <!ELEMENT filter-class (#PCDATA)>'
  2811.       
  2812.         '  <!ELEMENT filter-mapping (filter-name, (url-pattern | servlet-' +
  2813.         'name))>'
  2814.       '  <!ELEMENT filter-name (#PCDATA)>'
  2815.       '  <!ELEMENT form-error-page (#PCDATA)>'
  2816.       
  2817.         '  <!ELEMENT form-login-config (form-login-page, form-error-page)' +
  2818.         '>'
  2819.       '  <!ELEMENT form-login-page (#PCDATA)>'
  2820.       '  <!ELEMENT home (#PCDATA)>'
  2821.       '  <!ELEMENT http-method (#PCDATA)>'
  2822.       '  <!ELEMENT icon (small-icon?, large-icon?)>'
  2823.       '  <!ELEMENT init-param (param-name, param-value, description?)>'
  2824.       '  <!ELEMENT jsp-file (#PCDATA)>'
  2825.       '  <!ELEMENT large-icon (#PCDATA)>'
  2826.       '  <!ELEMENT listener (listener-class)>'
  2827.       '  <!ELEMENT listener-class (#PCDATA)>'
  2828.       '  <!ELEMENT load-on-startup (#PCDATA)>'
  2829.       '  <!ELEMENT local (#PCDATA)>'
  2830.       '  <!ELEMENT local-home (#PCDATA)>'
  2831.       '  <!ELEMENT location (#PCDATA)>'
  2832.       
  2833.         '  <!ELEMENT login-config (auth-method?, realm-name?, form-login-' +
  2834.         'config?)>'
  2835.       '  <!ELEMENT mime-mapping (extension, mime-type)>'
  2836.       '  <!ELEMENT mime-type (#PCDATA)>'
  2837.       '  <!ELEMENT param-name (#PCDATA)>'
  2838.       '  <!ELEMENT param-value (#PCDATA)>'
  2839.       '  <!ELEMENT realm-name (#PCDATA)>'
  2840.       '  <!ELEMENT remote (#PCDATA)>'
  2841.       '  <!ELEMENT res-auth (#PCDATA)>'
  2842.       '  <!ELEMENT res-ref-name (#PCDATA)>'
  2843.       '  <!ELEMENT res-sharing-scope (#PCDATA)>'
  2844.       '  <!ELEMENT res-type (#PCDATA)>'
  2845.       
  2846.         '  <!ELEMENT resource-env-ref (description?, resource-env-ref-nam' +
  2847.         'e,resource-env-ref-type)>'
  2848.       '  <!ELEMENT resource-env-ref-name (#PCDATA)>'
  2849.       '  <!ELEMENT resource-env-ref-type (#PCDATA)>'
  2850.       
  2851.         '  <!ELEMENT resource-ref (description?, res-ref-name, res-type, ' +
  2852.         'res-auth,res-sharing-scope?)>'
  2853.       '  <!ELEMENT role-link (#PCDATA)>'
  2854.       '  <!ELEMENT role-name (#PCDATA)>'
  2855.       '  <!ELEMENT run-as (description?, role-name)>'
  2856.       
  2857.         '  <!ELEMENT security-constraint (display-name?, web-resource-col' +
  2858.         'lection+,auth-constraint?, user-data-constraint?)>'
  2859.       '  <!ELEMENT security-role (description?, role-name)>'
  2860.       
  2861.         '  <!ELEMENT security-role-ref (description?, role-name, role-lin' +
  2862.         'k?)>'
  2863.       
  2864.         '  <!ELEMENT servlet (icon?, servlet-name, display-name?, descrip' +
  2865.         'tion?,'
  2866.       
  2867.         '    (servlet-class|jsp-file), init-param*, load-on-startup?, run' +
  2868.         '-as?, security-role-ref*)>'
  2869.       '  <!ELEMENT servlet-class (#PCDATA)>'
  2870.       '  <!ELEMENT servlet-mapping (servlet-name, url-pattern)>'
  2871.       '  <!ELEMENT servlet-name (#PCDATA)>'
  2872.       '  <!ELEMENT session-config (session-timeout?)>'
  2873.       '  <!ELEMENT session-timeout (#PCDATA)>'
  2874.       '  <!ELEMENT small-icon (#PCDATA)>'
  2875.       '  <!ELEMENT taglib (taglib-uri, taglib-location)>'
  2876.       '  <!ELEMENT taglib-location (#PCDATA)>'
  2877.       '  <!ELEMENT taglib-uri (#PCDATA)>'
  2878.       '  <!ELEMENT transport-guarantee (#PCDATA)>'
  2879.       '  <!ELEMENT url-pattern (#PCDATA)>'
  2880.       
  2881.         '  <!ELEMENT user-data-constraint (description?, transport-guaran' +
  2882.         'tee)>'
  2883.       
  2884.         '  <!ELEMENT web-resource-collection (web-resource-name, descript' +
  2885.         'ion?,url-pattern*, http-method*)>'
  2886.       '  <!ELEMENT web-resource-name (#PCDATA)>'
  2887.       '  <!ELEMENT welcome-file (#PCDATA)>'
  2888.       '  <!ELEMENT welcome-file-list (welcome-file+)>'
  2889.       '  <!ATTLIST auth-constraint id ID #IMPLIED>'
  2890.       '  <!ATTLIST auth-method id ID #IMPLIED>'
  2891.       '  <!ATTLIST context-param id ID #IMPLIED>'
  2892.       '  <!ATTLIST description id ID #IMPLIED>'
  2893.       '  <!ATTLIST display-name id ID #IMPLIED>'
  2894.       '  <!ATTLIST distributable id ID #IMPLIED>'
  2895.       '  <!ATTLIST ejb-link id ID #IMPLIED>'
  2896.       '  <!ATTLIST ejb-local-ref id ID #IMPLIED>'
  2897.       '  <!ATTLIST ejb-ref id ID #IMPLIED>'
  2898.       '  <!ATTLIST ejb-ref-name id ID #IMPLIED>'
  2899.       '  <!ATTLIST ejb-ref-type id ID #IMPLIED>'
  2900.       '  <!ATTLIST env-entry id ID #IMPLIED>'
  2901.       '  <!ATTLIST env-entry-name id ID #IMPLIED>'
  2902.       '  <!ATTLIST env-entry-type id ID #IMPLIED>'
  2903.       '  <!ATTLIST env-entry-value id ID #IMPLIED>'
  2904.       '  <!ATTLIST error-code id ID #IMPLIED>'
  2905.       '  <!ATTLIST error-page id ID #IMPLIED>'
  2906.       '  <!ATTLIST exception-type id ID #IMPLIED>'
  2907.       '  <!ATTLIST extension id ID #IMPLIED>'
  2908.       '  <!ATTLIST filter id ID #IMPLIED>'
  2909.       '  <!ATTLIST filter-class id ID #IMPLIED>'
  2910.       '  <!ATTLIST filter-mapping id ID #IMPLIED>'
  2911.       '  <!ATTLIST filter-name id ID #IMPLIED>'
  2912.       '  <!ATTLIST form-error-page id ID #IMPLIED>'
  2913.       '  <!ATTLIST form-login-config id ID #IMPLIED>'
  2914.       '  <!ATTLIST form-login-page id ID #IMPLIED>'
  2915.       '  <!ATTLIST home id ID #IMPLIED>'
  2916.       '  <!ATTLIST http-method id ID #IMPLIED>'
  2917.       '  <!ATTLIST icon id ID #IMPLIED>'
  2918.       '  <!ATTLIST init-param id ID #IMPLIED>'
  2919.       '  <!ATTLIST jsp-file id ID #IMPLIED>'
  2920.       '  <!ATTLIST large-icon id ID #IMPLIED>'
  2921.       '  <!ATTLIST listener id ID #IMPLIED>'
  2922.       '  <!ATTLIST listener-class id ID #IMPLIED>'
  2923.       '  <!ATTLIST load-on-startup id ID #IMPLIED>'
  2924.       '  <!ATTLIST local id ID #IMPLIED>'
  2925.       '  <!ATTLIST local-home id ID #IMPLIED>'
  2926.       '  <!ATTLIST location id ID #IMPLIED>'
  2927.       '  <!ATTLIST login-config id ID #IMPLIED>'
  2928.       '  <!ATTLIST mime-mapping id ID #IMPLIED>'
  2929.       '  <!ATTLIST mime-type id ID #IMPLIED>'
  2930.       '  <!ATTLIST param-name id ID #IMPLIED>'
  2931.       '  <!ATTLIST param-value id ID #IMPLIED>'
  2932.       '  <!ATTLIST realm-name id ID #IMPLIED>'
  2933.       '  <!ATTLIST remote id ID #IMPLIED>'
  2934.       '  <!ATTLIST res-auth id ID #IMPLIED>'
  2935.       '  <!ATTLIST res-ref-name id ID #IMPLIED>'
  2936.       '  <!ATTLIST res-sharing-scope id ID #IMPLIED>'
  2937.       '  <!ATTLIST res-type id ID #IMPLIED>'
  2938.       '  <!ATTLIST resource-env-ref id ID #IMPLIED>'
  2939.       '  <!ATTLIST resource-env-ref-name id ID #IMPLIED>'
  2940.       '  <!ATTLIST resource-env-ref-type id ID #IMPLIED>'
  2941.       '  <!ATTLIST resource-ref id ID #IMPLIED>'
  2942.       '  <!ATTLIST role-link id ID #IMPLIED>'
  2943.       '  <!ATTLIST role-name id ID #IMPLIED>'
  2944.       '  <!ATTLIST run-as id ID #IMPLIED>'
  2945.       '  <!ATTLIST security-constraint id ID #IMPLIED>'
  2946.       '  <!ATTLIST security-role id ID #IMPLIED>'
  2947.       '  <!ATTLIST security-role-ref id ID #IMPLIED>'
  2948.       '  <!ATTLIST servlet id ID #IMPLIED>'
  2949.       '  <!ATTLIST servlet-class id ID #IMPLIED>'
  2950.       '  <!ATTLIST servlet-mapping id ID #IMPLIED>'
  2951.       '  <!ATTLIST servlet-name id ID #IMPLIED>'
  2952.       '  <!ATTLIST session-config id ID #IMPLIED>'
  2953.       '  <!ATTLIST session-timeout id ID #IMPLIED>'
  2954.       '  <!ATTLIST small-icon id ID #IMPLIED>'
  2955.       '  <!ATTLIST taglib id ID #IMPLIED>'
  2956.       '  <!ATTLIST taglib-location id ID #IMPLIED>'
  2957.       '  <!ATTLIST taglib-uri id ID #IMPLIED>'
  2958.       '  <!ATTLIST transport-guarantee id ID #IMPLIED>'
  2959.       '  <!ATTLIST url-pattern id ID #IMPLIED>'
  2960.       '  <!ATTLIST url-pattern beep ID #IMPLIED>'
  2961.       '  <!ATTLIST user-data-constraint id ID #IMPLIED>'
  2962.       '  <!ATTLIST web-app id ID #IMPLIED>'
  2963.       '  <!ATTLIST web-resource-collection id ID #IMPLIED>'
  2964.       '  <!ATTLIST web-resource-name id ID #IMPLIED>'
  2965.       '  <!ATTLIST welcome-file id ID #IMPLIED>'
  2966.       '  <!ATTLIST welcome-file-list id ID #IMPLIED>'
  2967.       ']>'
  2968.       ''
  2969.       '<web-app>'
  2970.       '    <display-name abc="123" '
  2971.       '    def="true"></display-name>'
  2972.       '    <description></description>'
  2973.       '    <filter-mapping>'
  2974.       '        <filter-name></filter-name>'
  2975.       '        <url-pattern></url-pattern>'
  2976.       '    </filter-mapping>'
  2977.       '</web-app>'
  2978.       '')
  2979.     TokenTypeNames.Strings = (
  2980.       'Unknown'
  2981.       'Comment'
  2982.       'Identifier'
  2983.       'Symbol'
  2984.       'String'
  2985.       'Integer const'
  2986.       'Float const'
  2987.       'Hex const'
  2988.       'Char const'
  2989.       'Tag Open'
  2990.       'Tag Close'
  2991.       'CDATA'
  2992.       'PI'
  2993.       'Attrib. value'
  2994.       'CDATA end')
  2995.     MarkedBlockStyle = 'Marked block'
  2996.     DefaultStyleName = 'Default'
  2997.     Extentions = 'xml xsl xslt mmpa mmpr sti bdsproj xsd'
  2998.     LexerName = 'XML documents'
  2999.     Left = 140
  3000.     Top = 160
  3001.   end
  3002.   object SyntAnal50: TLibSyntAnalyzer
  3003.     Formats = <
  3004.       item
  3005.         DisplayName = 'Default'
  3006.         Font.Charset = RUSSIAN_CHARSET
  3007.         Font.Color = clWindowText
  3008.         Font.Height = -13
  3009.         Font.Name = 'Courier New'
  3010.         Font.Style = []
  3011.         FormatType = ftCustomFont
  3012.       end
  3013.       item
  3014.         DisplayName = 'Identifier'
  3015.         Font.Charset = DEFAULT_CHARSET
  3016.         Font.Color = clWindowText
  3017.         Font.Height = -13
  3018.         Font.Name = 'Courier New'
  3019.         Font.Style = []
  3020.       end
  3021.       item
  3022.         DisplayName = 'Reserved word'
  3023.         Font.Charset = DEFAULT_CHARSET
  3024.         Font.Color = clWindowText
  3025.         Font.Height = -13
  3026.         Font.Name = 'Courier New'
  3027.         Font.Style = [fsBold]
  3028.         ChangeCase = ccUpper
  3029.       end
  3030.       item
  3031.         DisplayName = 'String'
  3032.         Font.Charset = DEFAULT_CHARSET
  3033.         Font.Color = clRed
  3034.         Font.Height = -13
  3035.         Font.Name = 'Courier New'
  3036.         Font.Style = []
  3037.       end
  3038.       item
  3039.         DisplayName = 'Comment'
  3040.         Font.Charset = DEFAULT_CHARSET
  3041.         Font.Color = clGray
  3042.         Font.Height = -13
  3043.         Font.Name = 'Courier New'
  3044.         Font.Style = [fsItalic]
  3045.       end
  3046.       item
  3047.         DisplayName = 'Symbol'
  3048.         Font.Charset = DEFAULT_CHARSET
  3049.         Font.Color = clMaroon
  3050.         Font.Height = -13
  3051.         Font.Name = 'Courier New'
  3052.         Font.Style = [fsBold]
  3053.       end
  3054.       item
  3055.         DisplayName = 'Number'
  3056.         Font.Charset = DEFAULT_CHARSET
  3057.         Font.Color = clNavy
  3058.         Font.Height = -13
  3059.         Font.Name = 'Courier New'
  3060.         Font.Style = [fsBold]
  3061.       end
  3062.       item
  3063.         DisplayName = 'Marked block'
  3064.         Font.Charset = DEFAULT_CHARSET
  3065.         Font.Color = clHighlightText
  3066.         Font.Height = -13
  3067.         Font.Name = 'Courier New'
  3068.         Font.Style = []
  3069.         BgColor = clHighlight
  3070.         FormatType = ftColor
  3071.         BorderColorLeft = clRed
  3072.         BorderColorTop = clNavy
  3073.         BorderColorRight = clMaroon
  3074.         BorderColorBottom = clRed
  3075.         MultiLineBorder = True
  3076.       end
  3077.       item
  3078.         DisplayName = 'Reserved PL/SQL word'
  3079.         Font.Charset = DEFAULT_CHARSET
  3080.         Font.Color = clWindowText
  3081.         Font.Height = -13
  3082.         Font.Name = 'Courier New'
  3083.         Font.Style = [fsBold]
  3084.         ChangeCase = ccUpper
  3085.       end
  3086.       item
  3087.         DisplayName = 'SQL Functions'
  3088.         Font.Charset = DEFAULT_CHARSET
  3089.         Font.Color = clBlue
  3090.         Font.Height = -13
  3091.         Font.Name = 'Courier New'
  3092.         Font.Style = [fsItalic]
  3093.       end
  3094.       item
  3095.         DisplayName = 'SQL*Plus Meta Commands'
  3096.         Font.Charset = DEFAULT_CHARSET
  3097.         Font.Color = clGreen
  3098.         Font.Height = -13
  3099.         Font.Name = 'Courier New'
  3100.         Font.Style = []
  3101.       end
  3102.       item
  3103.         DisplayName = 'Datatypes'
  3104.         Font.Charset = DEFAULT_CHARSET
  3105.         Font.Color = clWindowText
  3106.         Font.Height = -13
  3107.         Font.Name = 'Courier New'
  3108.         Font.Style = [fsUnderline]
  3109.       end
  3110.       item
  3111.         DisplayName = 'Predefined Exceptions'
  3112.         Font.Charset = DEFAULT_CHARSET
  3113.         Font.Color = clRed
  3114.         Font.Height = -13
  3115.         Font.Name = 'Courier New'
  3116.         Font.Style = [fsItalic]
  3117.       end
  3118.       item
  3119.         DisplayName = 'Default Oracle Packages'
  3120.         Font.Charset = DEFAULT_CHARSET
  3121.         Font.Color = clBlue
  3122.         Font.Height = -13
  3123.         Font.Name = 'Courier New'
  3124.         Font.Style = []
  3125.         FormatFlags = [ffBold, ffUnderline, ffStrikeOut, ffReadOnly, ffHidden]
  3126.       end
  3127.       item
  3128.         DisplayName = 'Public Package Procedure'
  3129.         Font.Charset = DEFAULT_CHARSET
  3130.         Font.Color = clBlue
  3131.         Font.Height = -13
  3132.         Font.Name = 'Courier New'
  3133.         Font.Style = [fsItalic]
  3134.       end
  3135.       item
  3136.         DisplayName = 'Function separator'
  3137.         Font.Charset = DEFAULT_CHARSET
  3138.         Font.Color = clWindowText
  3139.         Font.Height = -13
  3140.         Font.Name = 'Courier New'
  3141.         Font.Style = []
  3142.         BgColor = clRed
  3143.         FormatType = ftBackGround
  3144.       end
  3145.       item
  3146.         DisplayName = 'Current block'
  3147.         Font.Charset = DEFAULT_CHARSET
  3148.         Font.Color = clBlue
  3149.         Font.Height = -13
  3150.         Font.Name = 'Courier New'
  3151.         Font.Style = [fsBold]
  3152.         BgColor = clBtnFace
  3153.         FormatType = ftColor
  3154.         BorderTypeLeft = blDot
  3155.         BorderColorLeft = clMaroon
  3156.         BorderTypeTop = blDot
  3157.         BorderColorTop = clMaroon
  3158.         BorderTypeRight = blDot
  3159.         BorderColorRight = clMaroon
  3160.         BorderTypeBottom = blDot
  3161.         BorderColorBottom = clMaroon
  3162.       end
  3163.       item
  3164.         DisplayName = 'Current function'
  3165.         Font.Charset = DEFAULT_CHARSET
  3166.         Font.Color = clMaroon
  3167.         Font.Height = -13
  3168.         Font.Name = 'Courier New'
  3169.         Font.Style = []
  3170.         BgColor = 16777205
  3171.         FormatType = ftBackGround
  3172.         MultiLineBorder = True
  3173.       end
  3174.       item
  3175.         DisplayName = 'Current Line'
  3176.         Font.Charset = DEFAULT_CHARSET
  3177.         Font.Color = clWindowText
  3178.         Font.Height = -13
  3179.         Font.Name = 'Courier New'
  3180.         Font.Style = []
  3181.         BgColor = 13369080
  3182.         FormatType = ftBackGround
  3183.       end
  3184.       item
  3185.         DisplayName = '()'
  3186.         Font.Charset = DEFAULT_CHARSET
  3187.         Font.Color = clWindowText
  3188.         Font.Height = -13
  3189.         Font.Name = 'Courier New'
  3190.         Font.Style = [fsBold, fsUnderline]
  3191.         BgColor = clBtnFace
  3192.         BorderTypeLeft = blDot
  3193.         BorderTypeTop = blDot
  3194.         BorderTypeRight = blDot
  3195.         BorderTypeBottom = blDot
  3196.       end
  3197.       item
  3198.         DisplayName = 'Big Bold (tree)'
  3199.         Font.Charset = RUSSIAN_CHARSET
  3200.         Font.Color = clWindowText
  3201.         Font.Height = -13
  3202.         Font.Name = 'Times New Roman'
  3203.         Font.Style = [fsBold]
  3204.         FormatType = ftCustomFont
  3205.       end
  3206.       item
  3207.         DisplayName = 'Group (tree)'
  3208.         Font.Charset = DEFAULT_CHARSET
  3209.         Font.Color = clPurple
  3210.         Font.Height = -13
  3211.         Font.Name = 'Courier New'
  3212.         Font.Style = [fsBold, fsItalic]
  3213.       end
  3214.       item
  3215.         DisplayName = 'Function (tree)'
  3216.         Font.Charset = DEFAULT_CHARSET
  3217.         Font.Color = clNavy
  3218.         Font.Height = -13
  3219.         Font.Name = 'Courier New'
  3220.         Font.Style = [fsBold]
  3221.       end
  3222.       item
  3223.         DisplayName = 'Data Dictionary'
  3224.         Font.Charset = DEFAULT_CHARSET
  3225.         Font.Color = clBlue
  3226.         Font.Height = -13
  3227.         Font.Name = 'Courier New'
  3228.         Font.Style = [fsBold]
  3229.       end>
  3230.     TokenRules = <
  3231.       item
  3232.         DisplayName = 'Public Package Procedure'
  3233.         StyleName = 'Public Package Procedure'
  3234.         TokenType = 2
  3235.         Expression = 'DBMS_\w+?\.\w+'#13#10
  3236.         ColumnFrom = 0
  3237.         ColumnTo = 0
  3238.       end
  3239.       item
  3240.         DisplayName = 'Any name'
  3241.         StyleName = 'Identifier'
  3242.         TokenType = 2
  3243.         Expression = '[a-z_]\w*'
  3244.         ColumnFrom = 0
  3245.         ColumnTo = 0
  3246.       end
  3247.       item
  3248.         DisplayName = 'String'
  3249.         StyleName = 'String'
  3250.         TokenType = 4
  3251.         Expression = '(?s)'#39'.*?('#39'|\Z)'
  3252.         ColumnFrom = 0
  3253.         ColumnTo = 0
  3254.       end
  3255.       item
  3256.         DisplayName = 'Comment'
  3257.         StyleName = 'Comment'
  3258.         TokenType = 1
  3259.         Expression = '(?s)/\*.*?(\*/|\Z)'#13#10
  3260.         ColumnFrom = 0
  3261.         ColumnTo = 0
  3262.       end
  3263.       item
  3264.         DisplayName = 'Comment 2'
  3265.         StyleName = 'Comment'
  3266.         TokenType = 1
  3267.         Expression = '--.*'#13#10
  3268.         ColumnFrom = 0
  3269.         ColumnTo = 0
  3270.       end
  3271.       item
  3272.         DisplayName = 'Float'
  3273.         StyleName = 'Number'
  3274.         TokenType = 6
  3275.         Expression = '\d+\.?\d+e[\+\-]?\d+|\d+\.\d+'
  3276.         ColumnFrom = 0
  3277.         ColumnTo = 0
  3278.       end
  3279.       item
  3280.         DisplayName = 'Integer'
  3281.         StyleName = 'Number'
  3282.         TokenType = 5
  3283.         Expression = '\d+'
  3284.         ColumnFrom = 0
  3285.         ColumnTo = 0
  3286.       end
  3287.       item
  3288.         DisplayName = 'Symbol'
  3289.         StyleName = 'Symbol'
  3290.         TokenType = 3
  3291.         Expression = '[/,\.;:\(\)=<>\+\-]'
  3292.         ColumnFrom = 0
  3293.         ColumnTo = 0
  3294.       end>
  3295.     BlockRules = <
  3296.       item
  3297.         DisplayName = 'Reserved words'
  3298.         StyleName = 'Reserved word'
  3299.         BlockType = btTagDetect
  3300.         ConditionList = <
  3301.           item
  3302.             TagList.Strings = (
  3303.               'ACCESS'
  3304.               'ADD'
  3305.               'ALL'
  3306.               'ALTER'
  3307.               'AND'
  3308.               'ANY'
  3309.               'AS'
  3310.               'ASC'
  3311.               'AUDIT'
  3312.               'BETWEEN'
  3313.               'BY'
  3314.               'CHAR'
  3315.               'CHECK'
  3316.               'CLUSTER'
  3317.               'COLUMN'
  3318.               'COMMENT'
  3319.               'COMPRESS'
  3320.               'CONNECT'
  3321.               'CONNECT_BY_ISCYCLE'
  3322.               'CONNECT_BY_ISLEAF'
  3323.               'CREATE'
  3324.               'CURRENT'
  3325.               'CURRVAL '
  3326.               'DATE'
  3327.               'DECIMAL'
  3328.               'DEFAULT'
  3329.               'DELETE'
  3330.               'DESC'
  3331.               'DISTINCT'
  3332.               'DROP'
  3333.               'ELSE'
  3334.               'EXCLUSIVE'
  3335.               'EXISTS'
  3336.               'FILE'
  3337.               'FLOAT'
  3338.               'FOR'
  3339.               'FROM'
  3340.               'GRANT'
  3341.               'GROUP'
  3342.               'HAVING'
  3343.               'IDENTIFIED'
  3344.               'IMMEDIATE'
  3345.               'IN'
  3346.               'INCREMENT'
  3347.               'INDEX'
  3348.               'INITIAL'
  3349.               'INSERT'
  3350.               'INTEGER'
  3351.               'INTERSECT'
  3352.               'INTO'
  3353.               'IS'
  3354.               'LEVEL'
  3355.               'LIKE'
  3356.               'LOCK'
  3357.               'LONG'
  3358.               'MAXEXTENTS'
  3359.               'MERGE'
  3360.               'MINUS'
  3361.               'MLSLABEL'
  3362.               'MODE'
  3363.               'MODIFY'
  3364.               'NEXTVAL'
  3365.               'NOAUDIT'
  3366.               'NOCOMPRESS'
  3367.               'NOT'
  3368.               'NOWAIT'
  3369.               'NULL'
  3370.               'NUMBER'
  3371.               'OBJECT_ID'
  3372.               'OBJECT_VALUE'
  3373.               'OF'
  3374.               'OFFLINE'
  3375.               'ON'
  3376.               'ONLINE'
  3377.               'OPTION'
  3378.               'OR'
  3379.               'ORA_ROWSCN'
  3380.               'ORDER'
  3381.               'PCTFREE'
  3382.               'PRIOR'
  3383.               'PRIVILEGES'
  3384.               'PUBLIC'
  3385.               'RAW'
  3386.               'RENAME'
  3387.               'RESOURCE'
  3388.               'REVOKE'
  3389.               'ROW'
  3390.               'ROWID'
  3391.               'ROWNUM'
  3392.               'ROWS'
  3393.               'SELECT'
  3394.               'SESSION'
  3395.               'SET'
  3396.               'SHARE'
  3397.               'SIZE'
  3398.               'SMALLINT'
  3399.               'START'
  3400.               'SUCCESSFUL'
  3401.               'SYNONYM'
  3402.               'SYSDATE'
  3403.               'TABLE'
  3404.               'TABLESPACE'
  3405.               'THEN'
  3406.               'TO'
  3407.               'TRIGGER'
  3408.               'UID'
  3409.               'UNION'
  3410.               'UNIQUE'
  3411.               'UPDATE'
  3412.               'USER'
  3413.               'VALIDATE'
  3414.               'VALUES'
  3415.               'VARCHAR'
  3416.               'VARCHAR2'
  3417.               'VIEW'
  3418.               'WHENEVER'
  3419.               'WHERE'
  3420.               'WITH'
  3421.               'XMLDATA')
  3422.             TokenTypes = 4
  3423.             IgnoreCase = True
  3424.           end>
  3425.         HighlightPos = cpAny
  3426.         IgnoreAsParent = False
  3427.       end
  3428.       item
  3429.         DisplayName = 'PL/SQL Reserved words'
  3430.         StyleName = 'Reserved PL/SQL word'
  3431.         BlockType = btTagDetect
  3432.         ConditionList = <
  3433.           item
  3434.             TagList.Strings = (
  3435.               'ALL'
  3436.               'ALTER'
  3437.               'AND'
  3438.               'ANY'
  3439.               'ARRAY'
  3440.               'AS'
  3441.               'ASC'
  3442.               'AT'
  3443.               'AUTHID'
  3444.               'AVG'
  3445.               'BEGIN'
  3446.               'BETWEEN'
  3447.               'BINARY_INTEGER'
  3448.               'BODY'
  3449.               'BOOLEAN'
  3450.               'BULK'
  3451.               'BY'
  3452.               'CASE'
  3453.               'CHAR'
  3454.               'CHAR_BASE'
  3455.               'CHECK'
  3456.               'CLOSE'
  3457.               'CLUSTER'
  3458.               'COALESCE'
  3459.               'COLLECT'
  3460.               'COMMENT'
  3461.               'COMMIT'
  3462.               'COMPRESS'
  3463.               'CONNECT'
  3464.               'CONSTANT'
  3465.               'CREATE'
  3466.               'CURRENT'
  3467.               'CURRVAL'
  3468.               'CURSOR'
  3469.               'DATE'
  3470.               'DAY'
  3471.               'DECIMAL'
  3472.               'DECLARE'
  3473.               'DEFAULT'
  3474.               'DELETE'
  3475.               'DELETING'
  3476.               'DESC'
  3477.               'DISTINCT'
  3478.               'DO'
  3479.               'DROP'
  3480.               'ELSE'
  3481.               'ELSIF'
  3482.               'END'
  3483.               'EXCEPTION'
  3484.               'EXCLUSIVE'
  3485.               'EXECUTE'
  3486.               'EXISTS'
  3487.               'EXIT'
  3488.               'EXTENDS'
  3489.               'EXTRACT'
  3490.               'FALSE'
  3491.               'FETCH'
  3492.               'FLOAT'
  3493.               'FOR'
  3494.               'FORALL'
  3495.               'FROM'
  3496.               'FUNCTION'
  3497.               'GOTO'
  3498.               'GROUP'
  3499.               'HAVING'
  3500.               'HEAP'
  3501.               'HOUR'
  3502.               'IF'
  3503.               'IMMEDIATE'
  3504.               'IN'
  3505.               'INDEX'
  3506.               'INDICATOR'
  3507.               'INSERT'
  3508.               'INSERTING'
  3509.               'INTEGER'
  3510.               'INTERFACE'
  3511.               'INTERSECT'
  3512.               'INTERVAL'
  3513.               'INTO'
  3514.               'IS'
  3515.               'ISOLATION'
  3516.               'JAVA'
  3517.               'LEVEL'
  3518.               'LIKE'
  3519.               'LIMITED'
  3520.               'LOCK'
  3521.               'LONG'
  3522.               'LOOP'
  3523.               'MAX'
  3524.               'MIN'
  3525.               'MINUS'
  3526.               'MINUTE'
  3527.               'MLSLABEL'
  3528.               'MOD'
  3529.               'MODE'
  3530.               'MONTH'
  3531.               'NATURAL'
  3532.               'NATURALN'
  3533.               'NEW'
  3534.               'NEXTVAL'
  3535.               'NOCOPY'
  3536.               'NOT'
  3537.               'NOWAIT'
  3538.               'NULL'
  3539.               'NULLIF'
  3540.               'NUMBER'
  3541.               'NUMBER_BASE'
  3542.               'OCIROWID'
  3543.               'OF'
  3544.               'ON'
  3545.               'OPAQUE'
  3546.               'OPEN'
  3547.               'OPERATOR'
  3548.               'OPTION'
  3549.               'OR'
  3550.               'ORDER'
  3551.               'ORGANIZATION'
  3552.               'OTHERS'
  3553.               'OUT'
  3554.               'PACKAGE'
  3555.               'PARTITION'
  3556.               'PCTFREE'
  3557.               'PLS_INTEGER'
  3558.               'POSITIVE'
  3559.               'POSITIVEN'
  3560.               'PRAGMA'
  3561.               'PRIOR'
  3562.               'PRIVATE'
  3563.               'PROCEDURE'
  3564.               'PUBLIC'
  3565.               'RAISE'
  3566.               'RANGE'
  3567.               'RAW'
  3568.               'REAL'
  3569.               'RECORD'
  3570.               'REF'
  3571.               'RELEASE'
  3572.               'RETURN'
  3573.               'REVERSE'
  3574.               'ROLLBACK'
  3575.               'ROW'
  3576.               'ROWID'
  3577.               'ROWNUM'
  3578.               'ROWTYPE'
  3579.               'SAVEPOINT'
  3580.               'SECOND'
  3581.               'SELECT'
  3582.               'SEPARATE'
  3583.               'SET'
  3584.               'SHARE'
  3585.               'SMALLINT'
  3586.               'SPACE'
  3587.               'SQL'
  3588.               'SQLCODE'
  3589.               'SQLERRM'
  3590.               'START'
  3591.               'STDDEV'
  3592.               'SUBTYPE'
  3593.               'SUCCESSFUL'
  3594.               'SUM'
  3595.               'SYNONYM'
  3596.               'SYSDATE'
  3597.               'TABLE'
  3598.               'THEN'
  3599.               'TIME'
  3600.               'TIMESTAMP'
  3601.               'TIMEZONE_ABBR'
  3602.               'TIMEZONE_HOUR'
  3603.               'TIMEZONE_MINUTE'
  3604.               'TIMEZONE_REGION'
  3605.               'TO'
  3606.               'TRIGGER'
  3607.               'TRUE'
  3608.               'TYPE'
  3609.               'UID'
  3610.               'UNION'
  3611.               'UNIQUE'
  3612.               'UPDATE'
  3613.               'UPDATEING'
  3614.               'USE'
  3615.               'USER'
  3616.               'VALIDATE'
  3617.               'VALUES'
  3618.               'VARCHAR'
  3619.               'VARCHAR2'
  3620.               'VARIANCE'
  3621.               'VIEW'
  3622.               'WHEN'
  3623.               'WHENEVER'
  3624.               'WHERE'
  3625.               'WHILE'
  3626.               'WITH'
  3627.               'WORK'
  3628.               'WRITE'
  3629.               'YEAR'
  3630.               'ZONE')
  3631.             TokenTypes = 4
  3632.             IgnoreCase = True
  3633.           end>
  3634.         HighlightPos = cpAny
  3635.         IgnoreAsParent = False
  3636.       end
  3637.       item
  3638.         DisplayName = 'SQL*Plus Meta Commands'
  3639.         StyleName = 'SQL*Plus Meta Commands'
  3640.         BlockType = btTagDetect
  3641.         ConditionList = <
  3642.           item
  3643.             TagList.Strings = (
  3644.               '@'
  3645.               '@@'
  3646.               'acc'
  3647.               'accept'
  3648.               'connect'
  3649.               'def'
  3650.               'define'
  3651.               'desc'
  3652.               'describe'
  3653.               'exec'
  3654.               'execute'
  3655.               'prompt'
  3656.               'rem'
  3657.               'remark'
  3658.               'set'
  3659.               'spo'
  3660.               'spool'
  3661.               'start'
  3662.               'undef'
  3663.               'undefine')
  3664.             TokenTypes = 4
  3665.             IgnoreCase = True
  3666.           end>
  3667.         HighlightPos = cpAny
  3668.         IgnoreAsParent = False
  3669.       end
  3670.       item
  3671.         DisplayName = 'SQL Functions'
  3672.         StyleName = 'SQL Functions'
  3673.         BlockType = btTagDetect
  3674.         ConditionList = <
  3675.           item
  3676.             TagList.Strings = (
  3677.               'ABS'
  3678.               'ACOS'
  3679.               'ADD_MONTHS'
  3680.               'ASCII'
  3681.               'ASCIISTR'
  3682.               'ASIN'
  3683.               'ATAN'
  3684.               'ATAN2'
  3685.               'AVG'
  3686.               'AVG '
  3687.               'BFILENAME'
  3688.               'BIN_TO_NUM'
  3689.               'BITAND'
  3690.               'CARDINALITY'
  3691.               'CAST'
  3692.               'CEIL'
  3693.               'CHARTOROWID'
  3694.               'CHR'
  3695.               'COALESCE'
  3696.               'COLLECT'
  3697.               'COMPOSE'
  3698.               'CONCAT'
  3699.               'CONVERT'
  3700.               'CORR '
  3701.               'CORR_K'
  3702.               'CORR_S'
  3703.               'COS'
  3704.               'COSH'
  3705.               'COUNT '
  3706.               'COVAR_POP'
  3707.               'COVAR_SAMP '
  3708.               'CUME_DIST'
  3709.               'CURRENT_DATE'
  3710.               'CURRENT_TIMESTAMP'
  3711.               'CV'
  3712.               'DBTIMEZONE'
  3713.               'DECODE'
  3714.               'DECOMPOSE'
  3715.               'DENSE_RANK'
  3716.               'DEPTH'
  3717.               'DEREF'
  3718.               'DUMP'
  3719.               'EMPTY_BLOB, EMPTY_CLOB'
  3720.               'EXISTSNODE'
  3721.               'EXP'
  3722.               'EXTRACT'
  3723.               'EXTRACTVALUE'
  3724.               'FIRST'
  3725.               'FIRST_VALUE '
  3726.               'FLOOR'
  3727.               'FROM_TZ'
  3728.               'GREATEST'
  3729.               'GROUP_ID'
  3730.               'GROUPING'
  3731.               'GROUPING_ID'
  3732.               'HEXTORAW'
  3733.               'INITCAP'
  3734.               'INSTR'
  3735.               'ITERATION_NUMBER'
  3736.               'LAG'
  3737.               'LAST'
  3738.               'LAST_DAY'
  3739.               'LAST_VALUE '
  3740.               'LEAD'
  3741.               'LEAST'
  3742.               'LENGTH'
  3743.               'LN'
  3744.               'LNNVL'
  3745.               'LOCALTIMESTAMP'
  3746.               'LOG'
  3747.               'LOWER'
  3748.               'LPAD'
  3749.               'LTRIM'
  3750.               'MAKE_REF'
  3751.               'MAX '
  3752.               'MEDIAN'
  3753.               'MIN '
  3754.               'MOD'
  3755.               'MONTHS_BETWEEN'
  3756.               'NANVL'
  3757.               'NEW_TIME'
  3758.               'NEXT_DAY'
  3759.               'NLS_CHARSET_DECL_LEN'
  3760.               'NLS_CHARSET_ID'
  3761.               'NLS_CHARSET_NAME'
  3762.               'NLS_INITCAP'
  3763.               'NLS_LOWER'
  3764.               'NLS_UPPER'
  3765.               'NLSSORT'
  3766.               'NTILE'
  3767.               'NULLIF'
  3768.               'NUMTODSINTERVAL'
  3769.               'NUMTOYMINTERVAL'
  3770.               'NVL'
  3771.               'NVL2'
  3772.               'ORA_HASH'
  3773.               'PATH'
  3774.               'PERCENT_RANK'
  3775.               'PERCENTILE_CONT'
  3776.               'PERCENTILE_DISC'
  3777.               'POWER'
  3778.               'POWERMULTISET'
  3779.               'POWERMULTISET_BY_CARDINALITY'
  3780.               'PRESENTNNV'
  3781.               'PRESENTV'
  3782.               'PREVIOUS'
  3783.               'RANK'
  3784.               'RATIO_TO_REPORT'
  3785.               'RAWTOHEX'
  3786.               'RAWTONHEX'
  3787.               'REF'
  3788.               'REFTOHEX'
  3789.               'REGEXP_INSTR'
  3790.               'REGEXP_REPLACE'
  3791.               'REGEXP_SUBSTR'
  3792.               'REGR_AVGX'
  3793.               'REGR_AVGY'
  3794.               'REGR_COUNT'
  3795.               'REGR_INTERCEPT'
  3796.               'REGR_R2'
  3797.               'REGR_SLOPE'
  3798.               'REGR_SXY'
  3799.               'REGR_SYY'
  3800.               'REMAINDER'
  3801.               'ROUND'
  3802.               'ROUND '
  3803.               'ROW_NUMBER'
  3804.               'ROWIDTOCHAR'
  3805.               'ROWIDTONCHAR'
  3806.               'RPAD'
  3807.               'RTRIM'
  3808.               'SCN_TO_TIMESTAMP'
  3809.               'SESSIONTIMEZONE'
  3810.               'SET'
  3811.               'SIGN'
  3812.               'SIN'
  3813.               'SINH'
  3814.               'SOUNDEX'
  3815.               'SQRT'
  3816.               'STATS_BINOMIAL_TEST'
  3817.               'STATS_CROSSTAB'
  3818.               'STATS_F_TEST'
  3819.               'STATS_KS_TEST'
  3820.               'STATS_MODE'
  3821.               'STATS_MW_TEST'
  3822.               'STATS_ONE_WAY_ANOVA'
  3823.               'STATS_T_TEST_INDEP'
  3824.               'STATS_T_TEST_INDEPU'
  3825.               'STATS_T_TEST_ONE'
  3826.               'STATS_T_TEST_PAIRED'
  3827.               'STATS_WSR_TEST'
  3828.               'STDDEV '
  3829.               'STDDEV_POP '
  3830.               'STDDEV_SAMP '
  3831.               'SUBSTR'
  3832.               'SUM '
  3833.               'SYS_CONNECT_BY_PATH'
  3834.               'SYS_CONTEXT'
  3835.               'SYS_DBURIGEN'
  3836.               'SYS_EXTRACT_UTC'
  3837.               'SYS_GUID'
  3838.               'SYS_TYPEID'
  3839.               'SYS_XMLAGG'
  3840.               'SYS_XMLGEN'
  3841.               'SYSDATE'
  3842.               'SYSTIMESTAMP'
  3843.               'TAN'
  3844.               'TANH'
  3845.               'TIMESTAMP_TO_SCN'
  3846.               'TO_BINARY_DOUBLE'
  3847.               'TO_BINARY_FLOAT'
  3848.               'TO_CHAR '
  3849.               'TO_CLOB'
  3850.               'TO_DATE'
  3851.               'TO_DSINTERVAL'
  3852.               'TO_LOB'
  3853.               'TO_MULTI_BYTE'
  3854.               'TO_NCHAR '
  3855.               'TO_NCLOB'
  3856.               'TO_NUMBER'
  3857.               'TO_SINGLE_BYTE'
  3858.               'TO_TIMESTAMP'
  3859.               'TO_TIMESTAMP_TZ'
  3860.               'TO_YMINTERVAL'
  3861.               'TRANSLATE'
  3862.               'TREAT'
  3863.               'TRIM'
  3864.               'TRUNC '
  3865.               'TZ_OFFSET'
  3866.               'UID'
  3867.               'UNISTR'
  3868.               'UPDATEXML'
  3869.               'UPPER'
  3870.               'USER'
  3871.               'USERENV'
  3872.               'USING'
  3873.               'VALUE'
  3874.               'VAR_POP'
  3875.               'VAR_SAMP '
  3876.               'VARIANCE'
  3877.               'VSIZE'
  3878.               'WIDTH_BUCKET'
  3879.               'XMLAGG'
  3880.               'XMLCOLATTVAL'
  3881.               'XMLCONCAT'
  3882.               'XMLFOREST'
  3883.               'XMLSEQUENCE'
  3884.               'XMLTRANSFORM')
  3885.             TokenTypes = 4
  3886.             IgnoreCase = True
  3887.           end>
  3888.         HighlightPos = cpAny
  3889.         IgnoreAsParent = False
  3890.       end
  3891.       item
  3892.         DisplayName = 'Default Oracle Packages'
  3893.         StyleName = 'Default Oracle Packages'
  3894.         BlockType = btTagDetect
  3895.         ConditionList = <
  3896.           item
  3897.             TagList.Strings = (
  3898.               'outln_pkg'
  3899.               'plitblm'
  3900.               'raise_application_error'
  3901.               'sdo_cs'
  3902.               'sdo_geom'
  3903.               'sdo_lrs'
  3904.               'sdo_migrate'
  3905.               'sdo_tune'
  3906.               'set_transaction_use'
  3907.               'standard'
  3908.               'updating'
  3909.               'utl_coll'
  3910.               'utl_encode'
  3911.               'utl_file'
  3912.               'utl_http'
  3913.               'utl_inaddr'
  3914.               'utl_pg'
  3915.               'utl_raw'
  3916.               'utl_ref'
  3917.               'utl_smtp'
  3918.               'utl_tcp'
  3919.               'utl_url')
  3920.             TokenTypes = 4
  3921.             IgnoreCase = True
  3922.           end>
  3923.         HighlightPos = cpAny
  3924.         IgnoreAsParent = False
  3925.       end
  3926.       item
  3927.         DisplayName = 'Predefined Exceptions'
  3928.         StyleName = 'Predefined Exceptions'
  3929.         BlockType = btTagDetect
  3930.         ConditionList = <
  3931.           item
  3932.             TagList.Strings = (
  3933.               'access_into_null'
  3934.               'collection_is_null'
  3935.               'cursor_already_open'
  3936.               'dbms_lob.access_error'
  3937.               'dbms_lob.invalid_directory'
  3938.               'dbms_lob.noexist_directory'
  3939.               'dbms_lob.nopriv_directory'
  3940.               'dbms_lob.open_toomany'
  3941.               'dbms_lob.operation_failed'
  3942.               'dbms_lob.unopened_file'
  3943.               'dbms_sql.inconsistent_type'
  3944.               'dup_val_on_index'
  3945.               'invalid_cursor'
  3946.               'invalid_number'
  3947.               'login_denied'
  3948.               'no_data_found'
  3949.               'not_logged_on'
  3950.               'others'
  3951.               'program_error'
  3952.               'storage_error'
  3953.               'subscript_beyond_count'
  3954.               'subscript_outside_limit'
  3955.               'timeout_on_resource'
  3956.               'too_many_rows'
  3957.               'utl_file.internal_error'
  3958.               'utl_file.invalid_filehandle'
  3959.               'utl_file.invalid_mode'
  3960.               'utl_file.invalid_operation'
  3961.               'utl_file.invalid_path'
  3962.               'utl_file.read_error'
  3963.               'utl_file.write_error'
  3964.               'value_error'
  3965.               'zero_divide')
  3966.             TokenTypes = 4
  3967.             IgnoreCase = True
  3968.           end>
  3969.         HighlightPos = cpAny
  3970.         IgnoreAsParent = False
  3971.       end
  3972.       item
  3973.         DisplayName = 'Datatypes'
  3974.         StyleName = 'Datatypes'
  3975.         BlockType = btTagDetect
  3976.         ConditionList = <
  3977.           item
  3978.             TagList.Strings = (
  3979.               'BFILE'
  3980.               'BINARY_DOUBLE'
  3981.               'BINARY_FLOAT'
  3982.               'BINARY_INTEGER'
  3983.               'BLOB'
  3984.               'BOOLEAN'
  3985.               'BYTE'
  3986.               'CHAR'
  3987.               'CHARACTER'
  3988.               'CLOB'
  3989.               'DATE'
  3990.               'DEC'
  3991.               'DECIMAL'
  3992.               'DOUBLE '
  3993.               'FLOAT'
  3994.               'INT'
  3995.               'INTEGER'
  3996.               'INTERVAL'
  3997.               'LONG'
  3998.               'LONG RAW'
  3999.               'NATURAL'
  4000.               'NATURALN'
  4001.               'NCHAR'
  4002.               'NCLOB'
  4003.               'NUMBER'
  4004.               'NUMERIC'
  4005.               'NVARCHAR2'
  4006.               'PLS_INTEGER'
  4007.               'POSITIVE'
  4008.               'POSITIVEN'
  4009.               'PRECISION'
  4010.               'RAW'
  4011.               'REAL'
  4012.               'RECORD'
  4013.               'ROWID'
  4014.               'SIGNTYPE'
  4015.               'SMALLINT'
  4016.               'STRING'
  4017.               'TABLE'
  4018.               'TIMESTAMP'
  4019.               'UROWID'
  4020.               'VARCHAR'
  4021.               'VARCHAR2'
  4022.               'VARRAY')
  4023.             TokenTypes = 4
  4024.             IgnoreCase = True
  4025.           end>
  4026.         HighlightPos = cpAny
  4027.         IgnoreAsParent = False
  4028.       end
  4029.       item
  4030.         DisplayName = 'Comment start'
  4031.         BlockName = 'Comment start'
  4032.         NotParent = True
  4033.         ConditionList = <
  4034.           item
  4035.             TokenTypes = 2
  4036.           end>
  4037.         BlockEnd = 'Comment end'
  4038.         DisplayInTree = False
  4039.         HighlightPos = cpAny
  4040.         CollapseFmt = '--  ...  --'
  4041.         IgnoreAsParent = False
  4042.       end
  4043.       item
  4044.         DisplayName = 'Comment end'
  4045.         BlockType = btRangeEnd
  4046.         ConditionList = <
  4047.           item
  4048.             TokenTypes = 1021
  4049.           end
  4050.           item
  4051.             TokenTypes = 2
  4052.           end>
  4053.         BlockOffset = 1
  4054.         HighlightPos = cpAny
  4055.         IgnoreAsParent = False
  4056.       end
  4057.       item
  4058.         DisplayName = 'package body'
  4059.         ConditionList = <
  4060.           item
  4061.             TokenTypes = 4
  4062.           end
  4063.           item
  4064.             TagList.Strings = (
  4065.               'body')
  4066.             TokenTypes = 4
  4067.             IgnoreCase = True
  4068.           end
  4069.           item
  4070.             TagList.Strings = (
  4071.               'package')
  4072.             TokenTypes = 4
  4073.             IgnoreCase = True
  4074.           end>
  4075.         BlockOffset = 2
  4076.         BlockEnd = 'package end'
  4077.         NameFmt = '%s2 %s1 %s0 '
  4078.         HighlightPos = cpAny
  4079.         TreeItemStyle = 'Big Bold (tree)'
  4080.         TreeItemImage = 0
  4081.         IgnoreAsParent = False
  4082.       end
  4083.       item
  4084.         DisplayName = 'package declaration'
  4085.         Enabled = False
  4086.         ConditionList = <
  4087.           item
  4088.             TokenTypes = 4
  4089.           end
  4090.           item
  4091.             TagList.Strings = (
  4092.               'body')
  4093.             CondType = tcNotEqual
  4094.             TokenTypes = 4
  4095.             IgnoreCase = True
  4096.           end
  4097.           item
  4098.             TagList.Strings = (
  4099.               'package')
  4100.             TokenTypes = 4
  4101.             IgnoreCase = True
  4102.           end>
  4103.         BlockOffset = 3
  4104.         BlockEnd = 'package end'
  4105.         NameFmt = '%s2 %s1 (declaration)'
  4106.         HighlightPos = cpAny
  4107.         GrammaRuleName = 'Package_declaration'
  4108.         TreeItemStyle = 'Big Bold (tree)'
  4109.         TreeItemImage = 0
  4110.         IgnoreAsParent = False
  4111.       end
  4112.       item
  4113.         DisplayName = 'package end'
  4114.         BlockType = btRangeEnd
  4115.         ConditionList = <
  4116.           item
  4117.             TagList.Strings = (
  4118.               '/')
  4119.             TokenTypes = 8
  4120.           end
  4121.           item
  4122.             TagList.Strings = (
  4123.               ';')
  4124.             TokenTypes = 8
  4125.           end>
  4126.         HighlightPos = cpAny
  4127.         IgnoreAsParent = False
  4128.       end
  4129.       item
  4130.         DisplayName = 'constant start'
  4131.         BlockName = 'package body'
  4132.         StrictParent = True
  4133.         ConditionList = <
  4134.           item
  4135.             TagList.Strings = (
  4136.               'constant')
  4137.             TokenTypes = 4
  4138.             IgnoreCase = True
  4139.           end
  4140.           item
  4141.             TokenTypes = 4
  4142.           end>
  4143.         BlockOffset = 1
  4144.         BlockEnd = 'constant end'
  4145.         NotCollapsed = True
  4146.         NameFmt = '%s1 %s-1'
  4147.         GroupFmt = 'Constants'
  4148.         HighlightPos = cpAny
  4149.         TreeGroupStyle = 'Group (tree)'
  4150.         TreeItemImage = 4
  4151.         TreeGroupImage = 0
  4152.         IgnoreAsParent = False
  4153.       end
  4154.       item
  4155.         DisplayName = 'constant end'
  4156.         BlockName = 'constant start'
  4157.         StrictParent = True
  4158.         BlockType = btRangeEnd
  4159.         ConditionList = <
  4160.           item
  4161.             TagList.Strings = (
  4162.               ';')
  4163.             TokenTypes = 8
  4164.           end>
  4165.         HighlightPos = cpAny
  4166.         IgnoreAsParent = False
  4167.       end
  4168.       item
  4169.         DisplayName = 'exception start'
  4170.         BlockName = 'block start'
  4171.         StrictParent = True
  4172.         ConditionList = <
  4173.           item
  4174.             TagList.Strings = (
  4175.               'exception')
  4176.             TokenTypes = 4
  4177.             IgnoreCase = True
  4178.           end>
  4179.         BlockEnd = 'exception end'
  4180.         NameFmt = '%s0 %s-2'
  4181.         HighlightPos = cpAny
  4182.         DrawStaple = True
  4183.         CollapseFmt = '%s0 ...'
  4184.         IgnoreAsParent = False
  4185.       end
  4186.       item
  4187.         DisplayName = 'exception end'
  4188.         BlockName = 'exception start'
  4189.         StrictParent = True
  4190.         BlockType = btRangeEnd
  4191.         ConditionList = <
  4192.           item
  4193.             TagList.Strings = (
  4194.               'end')
  4195.             TokenTypes = 4
  4196.             IgnoreCase = True
  4197.           end>
  4198.         HighlightPos = cpAny
  4199.         IgnoreAsParent = False
  4200.       end
  4201.       item
  4202.         DisplayName = 'Case start'
  4203.         StyleName = 'Current block'
  4204.         ConditionList = <
  4205.           item
  4206.             TagList.Strings = (
  4207.               'case')
  4208.             TokenTypes = 4
  4209.             IgnoreCase = True
  4210.           end
  4211.           item
  4212.             TagList.Strings = (
  4213.               'end')
  4214.             CondType = tcNotEqual
  4215.             TokenTypes = 4
  4216.             IgnoreCase = True
  4217.           end>
  4218.         BlockEnd = 'Case end'
  4219.         DynHighlight = dhBound
  4220.         HighlightPos = cpRange
  4221.         DynSelectMin = True
  4222.         DrawStaple = True
  4223.         IgnoreAsParent = False
  4224.       end
  4225.       item
  4226.         DisplayName = 'Case end'
  4227.         BlockName = 'Case start'
  4228.         StrictParent = True
  4229.         BlockType = btRangeEnd
  4230.         ConditionList = <
  4231.           item
  4232.             TokenTypes = 12
  4233.           end
  4234.           item
  4235.             TagList.Strings = (
  4236.               'end')
  4237.             TokenTypes = 4
  4238.             IgnoreCase = True
  4239.           end>
  4240.         HighlightPos = cpAny
  4241.         IgnoreAsParent = False
  4242.       end
  4243.       item
  4244.         DisplayName = 'if start'
  4245.         StyleName = 'Current block'
  4246.         ConditionList = <
  4247.           item
  4248.             TagList.Strings = (
  4249.               'if')
  4250.             TokenTypes = 4
  4251.             IgnoreCase = True
  4252.           end
  4253.           item
  4254.             TagList.Strings = (
  4255.               'end')
  4256.             CondType = tcNotEqual
  4257.             TokenTypes = 4
  4258.             IgnoreCase = True
  4259.           end>
  4260.         BlockEnd = 'if end'
  4261.         NameFmt = '%sz0'
  4262.         DynHighlight = dhBound
  4263.         HighlightPos = cpRange
  4264.         DynSelectMin = True
  4265.         DrawStaple = True
  4266.         CollapseFmt = '%sz0'
  4267.         IgnoreAsParent = False
  4268.       end
  4269.       item
  4270.         DisplayName = 'if end'
  4271.         BlockType = btRangeEnd
  4272.         ConditionList = <
  4273.           item
  4274.             TagList.Strings = (
  4275.               'if')
  4276.             TokenTypes = 4
  4277.             IgnoreCase = True
  4278.           end
  4279.           item
  4280.             TagList.Strings = (
  4281.               'end')
  4282.             TokenTypes = 4
  4283.             IgnoreCase = True
  4284.           end>
  4285.         HighlightPos = cpAny
  4286.         IgnoreAsParent = False
  4287.       end
  4288.       item
  4289.         DisplayName = 'function start'
  4290.         StyleName = 'Current function'
  4291.         ConditionList = <
  4292.           item
  4293.             TagList.Strings = (
  4294.               'function'
  4295.               'procedure')
  4296.             TokenTypes = 4
  4297.             IgnoreCase = True
  4298.           end>
  4299.         IdentIndex = -1
  4300.         BlockEnd = 'function end identifier'
  4301.         Highlight = True
  4302.         DynHighlight = dhRange
  4303.         HighlightPos = cpRange
  4304.         DrawStaple = True
  4305.         CollapseFmt = '%s0 %s-1'
  4306.         TreeItemStyle = 'Function (tree)'
  4307.         TreeItemImage = 5
  4308.         IgnoreAsParent = False
  4309.       end
  4310.       item
  4311.         DisplayName = 'function end identifier'
  4312.         BlockName = 'function start'
  4313.         StrictParent = True
  4314.         BlockType = btRangeEnd
  4315.         ConditionList = <
  4316.           item
  4317.             TokenTypes = 4
  4318.             IgnoreCase = True
  4319.           end
  4320.           item
  4321.             TagList.Strings = (
  4322.               'end')
  4323.             TokenTypes = 4
  4324.             IgnoreCase = True
  4325.           end>
  4326.         SameIdent = True
  4327.         HighlightPos = cpAny
  4328.         IgnoreAsParent = False
  4329.       end
  4330.       item
  4331.         DisplayName = 'function end'
  4332.         BlockName = 'function start'
  4333.         StrictParent = True
  4334.         BlockType = btRangeEnd
  4335.         ConditionList = <
  4336.           item
  4337.             TagList.Strings = (
  4338.               ';')
  4339.             TokenTypes = 8
  4340.           end
  4341.           item
  4342.             TagList.Strings = (
  4343.               'end')
  4344.             TokenTypes = 4
  4345.             IgnoreCase = True
  4346.           end>
  4347.         BlockEnd = 'function start'
  4348.         HighlightPos = cpAny
  4349.         IgnoreAsParent = False
  4350.       end
  4351.       item
  4352.         DisplayName = 'DML start'
  4353.         BlockName = 'DML start'
  4354.         NotParent = True
  4355.         ConditionList = <
  4356.           item
  4357.             TagList.Strings = (
  4358.               'delete'
  4359.               'insert'
  4360.               'merge'
  4361.               'open'
  4362.               'select'
  4363.               'update')
  4364.             TokenTypes = 4
  4365.             IgnoreCase = True
  4366.           end>
  4367.         BlockEnd = 'DML end'
  4368.         NameFmt = '%s0 %s-1'
  4369.         RefToCondEnd = True
  4370.         HighlightPos = cpAny
  4371.         TreeItemImage = 6
  4372.         IgnoreAsParent = False
  4373.       end
  4374.       item
  4375.         DisplayName = 'DML end'
  4376.         BlockType = btRangeEnd
  4377.         ConditionList = <
  4378.           item
  4379.             TagList.Strings = (
  4380.               ';')
  4381.             TokenTypes = 8
  4382.           end>
  4383.         BlockEnd = 'DML start'
  4384.         HighlightPos = cpAny
  4385.         IgnoreAsParent = False
  4386.       end
  4387.       item
  4388.         DisplayName = 'For start'
  4389.         StyleName = 'Current block'
  4390.         BlockName = 'DML start'
  4391.         NotParent = True
  4392.         ConditionList = <
  4393.           item
  4394.             TokenTypes = 4
  4395.           end
  4396.           item
  4397.             TagList.Strings = (
  4398.               'for'
  4399.               'while')
  4400.             TokenTypes = 4
  4401.             IgnoreCase = True
  4402.           end>
  4403.         BlockEnd = 'For end'
  4404.         NameFmt = '%sz0'
  4405.         RefToCondEnd = True
  4406.         DynHighlight = dhBound
  4407.         HighlightPos = cpRange
  4408.         DynSelectMin = True
  4409.         CancelNextRules = True
  4410.         DrawStaple = True
  4411.         CollapseFmt = '%sz0'
  4412.         IgnoreAsParent = False
  4413.       end
  4414.       item
  4415.         DisplayName = 'For end'
  4416.         BlockName = 'DML start'
  4417.         BlockType = btRangeEnd
  4418.         ConditionList = <
  4419.           item
  4420.             TagList.Strings = (
  4421.               'loop')
  4422.             TokenTypes = 4
  4423.             IgnoreCase = True
  4424.           end
  4425.           item
  4426.             TagList.Strings = (
  4427.               'end')
  4428.             TokenTypes = 4
  4429.             IgnoreCase = True
  4430.           end>
  4431.         HighlightPos = cpAny
  4432.         IgnoreAsParent = False
  4433.       end
  4434.       item
  4435.         DisplayName = 'Loop start'
  4436.         StyleName = 'Current block'
  4437.         BlockName = 'For start'
  4438.         NotParent = True
  4439.         ConditionList = <
  4440.           item
  4441.             TagList.Strings = (
  4442.               'loop')
  4443.             TokenTypes = 4
  4444.             IgnoreCase = True
  4445.           end
  4446.           item
  4447.             TagList.Strings = (
  4448.               'end')
  4449.             CondType = tcNotEqual
  4450.             TokenTypes = 4
  4451.             IgnoreCase = True
  4452.           end>
  4453.         BlockEnd = 'Loop end'
  4454.         DynHighlight = dhBound
  4455.         HighlightPos = cpRange
  4456.         DynSelectMin = True
  4457.         DrawStaple = True
  4458.         IgnoreAsParent = False
  4459.       end
  4460.       item
  4461.         DisplayName = 'Loop end'
  4462.         BlockType = btRangeEnd
  4463.         ConditionList = <
  4464.           item
  4465.             TagList.Strings = (
  4466.               'loop')
  4467.             TokenTypes = 4
  4468.             IgnoreCase = True
  4469.           end
  4470.           item
  4471.             TagList.Strings = (
  4472.               'end')
  4473.             TokenTypes = 4
  4474.             IgnoreCase = True
  4475.           end>
  4476.         HighlightPos = cpAny
  4477.         IgnoreAsParent = False
  4478.       end
  4479.       item
  4480.         DisplayName = 'Function Separator'
  4481.         StyleName = 'Function separator'
  4482.         BlockName = 'package body'
  4483.         StrictParent = True
  4484.         BlockType = btLineBreak
  4485.         ConditionList = <
  4486.           item
  4487.             TagList.Strings = (
  4488.               'function'
  4489.               'procedure')
  4490.             TokenTypes = 4
  4491.             IgnoreCase = True
  4492.           end>
  4493.         HighlightPos = cpAny
  4494.         IgnoreAsParent = False
  4495.       end
  4496.       item
  4497.         DisplayName = '('
  4498.         StyleName = '()'
  4499.         ConditionList = <
  4500.           item
  4501.             TagList.Strings = (
  4502.               '(')
  4503.             TokenTypes = 8
  4504.           end>
  4505.         BlockEnd = ')'
  4506.         DisplayInTree = False
  4507.         DynHighlight = dhBound
  4508.         HighlightPos = cpRange
  4509.         DynSelectMin = True
  4510.         CollapseFmt = '( ... )'
  4511.         IgnoreAsParent = False
  4512.       end
  4513.       item
  4514.         DisplayName = ')'
  4515.         BlockType = btRangeEnd
  4516.         ConditionList = <
  4517.           item
  4518.             TagList.Strings = (
  4519.               ')')
  4520.             TokenTypes = 8
  4521.           end>
  4522.         BlockEnd = '('
  4523.         HighlightPos = cpAny
  4524.         IgnoreAsParent = False
  4525.       end
  4526.       item
  4527.         DisplayName = 'block start'
  4528.         StyleName = 'Current block'
  4529.         AlwaysEnabled = True
  4530.         ConditionList = <
  4531.           item
  4532.             TagList.Strings = (
  4533.               'begin')
  4534.             TokenTypes = 4
  4535.             IgnoreCase = True
  4536.           end>
  4537.         BlockEnd = 'block end'
  4538.         DynHighlight = dhBound
  4539.         HighlightPos = cpRange
  4540.         DynSelectMin = True
  4541.         DrawStaple = True
  4542.         IgnoreAsParent = False
  4543.       end
  4544.       item
  4545.         DisplayName = 'block end'
  4546.         BlockName = 'block start'
  4547.         StrictParent = True
  4548.         BlockType = btRangeEnd
  4549.         ConditionList = <
  4550.           item
  4551.             TagList.Strings = (
  4552.               'end')
  4553.             TokenTypes = 4
  4554.             IgnoreCase = True
  4555.           end>
  4556.         HighlightPos = cpAny
  4557.         IgnoreAsParent = False
  4558.       end
  4559.       item
  4560.         DisplayName = 'Type start'
  4561.         BlockName = 'package body'
  4562.         StrictParent = True
  4563.         ConditionList = <
  4564.           item
  4565.             TokenTypes = 4
  4566.           end
  4567.           item
  4568.             TagList.Strings = (
  4569.               'type')
  4570.             TokenTypes = 4
  4571.             IgnoreCase = True
  4572.           end>
  4573.         BlockOffset = 1
  4574.         BlockEnd = 'Type end'
  4575.         GroupFmt = 'Types'
  4576.         HighlightPos = cpAny
  4577.         GrammaRuleName = 'type_declaration'
  4578.         TreeGroupStyle = 'Group (tree)'
  4579.         TreeItemImage = 3
  4580.         TreeGroupImage = 0
  4581.         IgnoreAsParent = False
  4582.       end
  4583.       item
  4584.         DisplayName = 'Type end'
  4585.         BlockType = btRangeEnd
  4586.         ConditionList = <
  4587.           item
  4588.             TagList.Strings = (
  4589.               ';')
  4590.             TokenTypes = 8
  4591.           end>
  4592.         HighlightPos = cpAny
  4593.         IgnoreAsParent = False
  4594.       end
  4595.       item
  4596.         DisplayName = 'Data Dictionary'
  4597.         StyleName = 'Data Dictionary'
  4598.         BlockType = btTagDetect
  4599.         ConditionList = <
  4600.           item
  4601.             TagList.Strings = (
  4602.               '_all_instantiation_ddl'
  4603.               '_all_repextensions'
  4604.               '_all_repsites_new'
  4605.               '_all_sqlset_statements_only'
  4606.               '_all_sqlset_statements_phv'
  4607.               '_all_sqlset_statistics_only'
  4608.               'adm_rlmgr_privileges'
  4609.               'alert_type'
  4610.               'all_all_tables'
  4611.               'all_apply'
  4612.               'all_apply_conflict_columns'
  4613.               'all_apply_dml_handlers'
  4614.               'all_apply_enqueue'
  4615.               'all_apply_error'
  4616.               'all_apply_execute'
  4617.               'all_apply_key_columns'
  4618.               'all_apply_parameters'
  4619.               'all_apply_progress'
  4620.               'all_apply_table_columns'
  4621.               'all_arguments'
  4622.               'all_associations'
  4623.               'all_audit_policies'
  4624.               'all_audit_policy_columns'
  4625.               'all_aw_ac'
  4626.               'all_aw_ac_10g'
  4627.               'all_aw_cube_agg_levels'
  4628.               'all_aw_cube_agg_measures'
  4629.               'all_aw_cube_agg_plans'
  4630.               'all_aw_cube_enabled_hiercombo'
  4631.               'all_aw_cube_enabled_views'
  4632.               'all_aw_dim_enabled_views'
  4633.               'all_aw_load_cube_dims'
  4634.               'all_aw_load_cube_filters'
  4635.               'all_aw_load_cube_measures'
  4636.               'all_aw_load_cube_parms'
  4637.               'all_aw_load_cubes'
  4638.               'all_aw_load_dim_filters'
  4639.               'all_aw_load_dim_parms'
  4640.               'all_aw_load_dimensions'
  4641.               'all_aw_obj'
  4642.               'all_aw_prop'
  4643.               'all_aw_prop_name'
  4644.               'all_aw_ps'
  4645.               'all_aws'
  4646.               'all_base_table_mviews'
  4647.               'all_capture'
  4648.               'all_capture_extra_attributes'
  4649.               'all_capture_parameters'
  4650.               'all_capture_prepared_database'
  4651.               'all_capture_prepared_schemas'
  4652.               'all_capture_prepared_tables'
  4653.               'all_catalog'
  4654.               'all_cluster_hash_expressions'
  4655.               'all_clusters'
  4656.               'all_col_comments'
  4657.               'all_col_privs'
  4658.               'all_col_privs_made'
  4659.               'all_col_privs_recd'
  4660.               'all_coll_types'
  4661.               'all_cons_columns'
  4662.               'all_cons_obj_columns'
  4663.               'all_constraints'
  4664.               'all_context'
  4665.               'all_db_links'
  4666.               'all_def_audit_opts'
  4667.               'all_dependencies'
  4668.               'all_dequeue_queues'
  4669.               'all_dim_attributes'
  4670.               'all_dim_child_of'
  4671.               'all_dim_hierarchies'
  4672.               'all_dim_join_key'
  4673.               'all_dim_level_key'
  4674.               'all_dim_levels'
  4675.               'all_dimensions'
  4676.               'all_directories'
  4677.               'all_encrypted_columns'
  4678.               'all_errors'
  4679.               'all_evaluation_context_tables'
  4680.               'all_evaluation_context_vars'
  4681.               'all_evaluation_contexts'
  4682.               'all_expfil_aset_functions'
  4683.               'all_expfil_attribute_sets'
  4684.               'all_expfil_attributes'
  4685.               'all_expfil_def_index_params'
  4686.               'all_expfil_expression_sets'
  4687.               'all_expfil_exprset_stats'
  4688.               'all_expfil_index_params'
  4689.               'all_expfil_indexes'
  4690.               'all_expfil_predtab_attributes'
  4691.               'all_external_locations'
  4692.               'all_external_tables'
  4693.               'all_file_group_export_info'
  4694.               'all_file_group_files'
  4695.               'all_file_group_tables'
  4696.               'all_file_group_tablespaces'
  4697.               'all_file_group_versions'
  4698.               'all_file_groups'
  4699.               'all_geometry_columns'
  4700.               'all_histograms'
  4701.               'all_ind_columns'
  4702.               'all_ind_expressions'
  4703.               'all_ind_partitions'
  4704.               'all_ind_statistics'
  4705.               'all_ind_subpartitions'
  4706.               'all_indexes'
  4707.               'all_indextype_arraytypes'
  4708.               'all_indextype_comments'
  4709.               'all_indextype_operators'
  4710.               'all_indextypes'
  4711.               'all_internal_triggers'
  4712.               'all_java_arguments'
  4713.               'all_java_classes'
  4714.               'all_java_derivations'
  4715.               'all_java_fields'
  4716.               'all_java_implements'
  4717.               'all_java_inners'
  4718.               'all_java_layouts'
  4719.               'all_java_methods'
  4720.               'all_java_ncomps'
  4721.               'all_java_resolvers'
  4722.               'all_java_throws'
  4723.               'all_jobs'
  4724.               'all_join_ind_columns'
  4725.               'all_libraries'
  4726.               'all_load_cube_segwidth'
  4727.               'all_lob_partitions'
  4728.               'all_lob_subpartitions'
  4729.               'all_lob_templates'
  4730.               'all_lobs'
  4731.               'all_log_group_columns'
  4732.               'all_log_groups'
  4733.               'all_method_params'
  4734.               'all_method_results'
  4735.               'all_mp_graph_workspaces'
  4736.               'all_mp_parent_workspaces'
  4737.               'all_mview_aggregates'
  4738.               'all_mview_analysis'
  4739.               'all_mview_comments'
  4740.               'all_mview_detail_relations'
  4741.               'all_mview_joins'
  4742.               'all_mview_keys'
  4743.               'all_mview_logs'
  4744.               'all_mview_refresh_times'
  4745.               'all_mviews'
  4746.               'all_nested_table_cols'
  4747.               'all_nested_tables'
  4748.               'all_obj_colattrs'
  4749.               'all_object_tables'
  4750.               'all_objects'
  4751.               'all_olap_alter_session'
  4752.               'all_olap_catalog_entity_uses'
  4753.               'all_olap_catalogs'
  4754.               'all_olap_columns'
  4755.               'all_olap_cube_dim_uses'
  4756.               'all_olap_cube_measure_dim_uses'
  4757.               'all_olap_cube_measure_maps'
  4758.               'all_olap_cube_measures'
  4759.               'all_olap_cubes'
  4760.               'all_olap_descriptor_types'
  4761.               'all_olap_descriptors'
  4762.               'all_olap_dim_attr_uses'
  4763.               'all_olap_dim_attributes'
  4764.               'all_olap_dim_hier_level_uses'
  4765.               'all_olap_dim_hierarchies'
  4766.               'all_olap_dim_level_attr_maps'
  4767.               'all_olap_dim_level_attributes'
  4768.               'all_olap_dim_levels'
  4769.               'all_olap_dimensions'
  4770.               'all_olap_entity_desc_uses'
  4771.               'all_olap_fact_level_uses'
  4772.               'all_olap_foreign_keys'
  4773.               'all_olap_function_arguments'
  4774.               'all_olap_function_parameters'
  4775.               'all_olap_function_usages'
  4776.               'all_olap_functions'
  4777.               'all_olap_join_key_column_uses'
  4778.               'all_olap_key_column_uses'
  4779.               'all_olap_keys'
  4780.               'all_olap_level_key_column_uses'
  4781.               'all_olap_tables'
  4782.               'all_olap1_cubes'
  4783.               'all_olap2_aggregation_uses'
  4784.               'all_olap2_aw_attributes'
  4785.               'all_olap2_aw_catalog_measures'
  4786.               'all_olap2_aw_catalogs'
  4787.               'all_olap2_aw_cube_agg_lvl'
  4788.               'all_olap2_aw_cube_agg_meas'
  4789.               'all_olap2_aw_cube_agg_op'
  4790.               'all_olap2_aw_cube_agg_specs'
  4791.               'all_olap2_aw_cube_dim_uses'
  4792.               'all_olap2_aw_cube_measures'
  4793.               'all_olap2_aw_cubes'
  4794.               'all_olap2_aw_dim_hier_lvl_ord'
  4795.               'all_olap2_aw_dim_levels'
  4796.               'all_olap2_aw_dimensions'
  4797.               'all_olap2_aw_phys_obj'
  4798.               'all_olap2_aw_phys_obj_prop'
  4799.               'all_olap2_aws'
  4800.               'all_olap2_awviewcols'
  4801.               'all_olap2_awviews'
  4802.               'all_olap2_catalog_entity_uses'
  4803.               'all_olap2_catalogs'
  4804.               'all_olap2_cube_dim_uses'
  4805.               'all_olap2_cube_meas_dim_uses'
  4806.               'all_olap2_cube_measure_maps'
  4807.               'all_olap2_cube_measures'
  4808.               'all_olap2_cubes'
  4809.               'all_olap2_dim_attr_uses'
  4810.               'all_olap2_dim_attributes'
  4811.               'all_olap2_dim_hier_level_uses'
  4812.               'all_olap2_dim_hierarchies'
  4813.               'all_olap2_dim_hiers'
  4814.               'all_olap2_dim_level_attr_maps'
  4815.               'all_olap2_dim_level_attributes'
  4816.               'all_olap2_dim_levels'
  4817.               'all_olap2_dim_levels_keymaps'
  4818.               'all_olap2_dimensions'
  4819.               'all_olap2_entity_desc_uses'
  4820.               'all_olap2_entity_ext_parms'
  4821.               'all_olap2_entity_parameters'
  4822.               'all_olap2_fact_level_uses'
  4823.               'all_olap2_fact_table_gid'
  4824.               'all_olap2_facttblfctmaps'
  4825.               'all_olap2_facttblkeymaps'
  4826.               'all_olap2_hier_custom_sort'
  4827.               'all_olap2_hierdim_keycol_map'
  4828.               'all_olap2_hierdims'
  4829.               'all_olap2_join_key_column_uses'
  4830.               'all_olap2_level_key_col_uses'
  4831.               'all_olap2_listdims'
  4832.               'all_olap2_mr_measdimview'
  4833.               'all_olap2_mv_cube_agg_levels'
  4834.               'all_olap2_mv_cube_agg_measures'
  4835.               'all_olap2_rufcttblkymaps'
  4836.               'all_olap9i1_hier_dimensions'
  4837.               'all_olap9i2_hier_dimensions'
  4838.               'all_olapmr_attributes'
  4839.               'all_olapmr_dim_attributes'
  4840.               'all_olapmr_dim_levels'
  4841.               'all_olapmr_dim_levels_keymaps'
  4842.               'all_olapmr_dimensions'
  4843.               'all_olapmr_facttblfctmaps'
  4844.               'all_olapmr_facttblkeymaps'
  4845.               'all_opancillary'
  4846.               'all_oparguments'
  4847.               'all_opbindings'
  4848.               'all_operator_comments'
  4849.               'all_operators'
  4850.               'all_outline_hints'
  4851.               'all_outlines'
  4852.               'all_part_col_statistics'
  4853.               'all_part_histograms'
  4854.               'all_part_indexes'
  4855.               'all_part_key_columns'
  4856.               'all_part_lobs'
  4857.               'all_part_tables'
  4858.               'all_partial_drop_tabs'
  4859.               'all_pending_conv_tables'
  4860.               'all_plsql_object_settings'
  4861.               'all_policies'
  4862.               'all_policy_contexts'
  4863.               'all_policy_groups'
  4864.               'all_procedures'
  4865.               'all_propagation'
  4866.               'all_published_columns'
  4867.               'all_queue_publishers'
  4868.               'all_queue_subscribers'
  4869.               'all_queue_tables'
  4870.               'all_queues'
  4871.               'all_refresh'
  4872.               'all_refresh_children'
  4873.               'all_refresh_dependencies'
  4874.               'all_refs'
  4875.               'all_registered_mviews'
  4876.               'all_registered_snapshots'
  4877.               'all_registry_banners'
  4878.               'all_repaudit_attribute'
  4879.               'all_repaudit_column'
  4880.               'all_repcat'
  4881.               'all_repcat_refresh_templates'
  4882.               'all_repcat_template_objects'
  4883.               'all_repcat_template_parms'
  4884.               'all_repcat_template_sites'
  4885.               'all_repcat_user_authorizations'
  4886.               'all_repcat_user_parm_values'
  4887.               'all_repcatlog'
  4888.               'all_repcolumn'
  4889.               'all_repcolumn_group'
  4890.               'all_repconflict'
  4891.               'all_repddl'
  4892.               'all_repflavor_columns'
  4893.               'all_repflavor_objects'
  4894.               'all_repflavors'
  4895.               'all_repgenerated'
  4896.               'all_repgenobjects'
  4897.               'all_repgroup'
  4898.               'all_repgroup_privileges'
  4899.               'all_repgrouped_column'
  4900.               'all_repkey_columns'
  4901.               'all_repobject'
  4902.               'all_repparameter_column'
  4903.               'all_reppriority'
  4904.               'all_reppriority_group'
  4905.               'all_repprop'
  4906.               'all_represol_stats_control'
  4907.               'all_represolution'
  4908.               'all_represolution_method'
  4909.               'all_represolution_statistics'
  4910.               'all_repschema'
  4911.               'all_repsites'
  4912.               'all_rewrite_equivalences'
  4913.               'all_rlmgr_comprcls_properties'
  4914.               'all_rlmgr_event_structs'
  4915.               'all_rlmgr_rule_class_status'
  4916.               'all_rlmgr_rule_classes'
  4917.               'all_rule_set_rules'
  4918.               'all_rule_sets'
  4919.               'all_rules'
  4920.               'all_rulesets'
  4921.               'all_scheduler_chain_rules'
  4922.               'all_scheduler_chain_steps'
  4923.               'all_scheduler_chains'
  4924.               'all_scheduler_global_attribute'
  4925.               'all_scheduler_job_args'
  4926.               'all_scheduler_job_classes'
  4927.               'all_scheduler_job_log'
  4928.               'all_scheduler_job_run_details'
  4929.               'all_scheduler_jobs'
  4930.               'all_scheduler_program_args'
  4931.               'all_scheduler_programs'
  4932.               'all_scheduler_running_chains'
  4933.               'all_scheduler_running_jobs'
  4934.               'all_scheduler_schedules'
  4935.               'all_scheduler_window_details'
  4936.               'all_scheduler_window_groups'
  4937.               'all_scheduler_window_log'
  4938.               'all_scheduler_windows'
  4939.               'all_scheduler_wingroup_members'
  4940.               'all_sdo_geom_metadata'
  4941.               'all_sdo_geor_sysdata'
  4942.               'all_sdo_index_info'
  4943.               'all_sdo_index_metadata'
  4944.               'all_sdo_lrs_metadata'
  4945.               'all_sdo_maps'
  4946.               'all_sdo_network_constraints'
  4947.               'all_sdo_network_metadata'
  4948.               'all_sdo_network_user_data'
  4949.               'all_sdo_styles'
  4950.               'all_sdo_themes'
  4951.               'all_sdo_topo_info'
  4952.               'all_sdo_topo_metadata'
  4953.               'all_sec_relevant_cols'
  4954.               'all_secondary_objects'
  4955.               'all_sequences'
  4956.               'all_services'
  4957.               'all_snapshot_logs'
  4958.               'all_snapshot_refresh_times'
  4959.               'all_snapshots'
  4960.               'all_source'
  4961.               'all_source_tables'
  4962.               'all_sqlj_type_attrs'
  4963.               'all_sqlj_type_methods'
  4964.               'all_sqlj_types'
  4965.               'all_sqlset'
  4966.               'all_sqlset_binds'
  4967.               'all_sqlset_plans'
  4968.               'all_sqlset_references'
  4969.               'all_sqlset_statements'
  4970.               'all_stored_settings'
  4971.               'all_streams_global_rules'
  4972.               'all_streams_message_consumers'
  4973.               'all_streams_message_rules'
  4974.               'all_streams_newly_supported'
  4975.               'all_streams_rules'
  4976.               'all_streams_schema_rules'
  4977.               'all_streams_table_rules'
  4978.               'all_streams_transform_function'
  4979.               'all_streams_unsupported'
  4980.               'all_subpart_col_statistics'
  4981.               'all_subpart_histograms'
  4982.               'all_subpart_key_columns'
  4983.               'all_subpartition_templates'
  4984.               'all_subscribed_columns'
  4985.               'all_subscribed_tables'
  4986.               'all_subscriptions'
  4987.               'all_sumdelta'
  4988.               'all_summaries'
  4989.               'all_summary_aggregates'
  4990.               'all_summary_detail_tables'
  4991.               'all_summary_joins'
  4992.               'all_summary_keys'
  4993.               'all_synonyms'
  4994.               'all_tab_col_statistics'
  4995.               'all_tab_cols'
  4996.               'all_tab_columns'
  4997.               'all_tab_comments'
  4998.               'all_tab_histograms'
  4999.               'all_tab_modifications'
  5000.               'all_tab_partitions'
  5001.               'all_tab_privs'
  5002.               'all_tab_privs_made'
  5003.               'all_tab_privs_recd'
  5004.               'all_tab_statistics'
  5005.               'all_tab_stats_history'
  5006.               'all_tab_subpartitions'
  5007.               'all_tables'
  5008.               'all_trigger_cols'
  5009.               'all_triggers'
  5010.               'all_type_attrs'
  5011.               'all_type_methods'
  5012.               'all_type_versions'
  5013.               'all_types'
  5014.               'all_unused_col_tabs'
  5015.               'all_updatable_columns'
  5016.               'all_users'
  5017.               'all_ustats'
  5018.               'all_varrays'
  5019.               'all_version_hview'
  5020.               'all_views'
  5021.               'all_warning_settings'
  5022.               'all_wm_cons_columns'
  5023.               'all_wm_constraints'
  5024.               'all_wm_ind_columns'
  5025.               'all_wm_ind_expressions'
  5026.               'all_wm_locked_tables'
  5027.               'all_wm_modified_tables'
  5028.               'all_wm_ric_info'
  5029.               'all_wm_tab_triggers'
  5030.               'all_wm_versioned_tables'
  5031.               'all_wm_vt_errors'
  5032.               'all_workspace_privs'
  5033.               'all_workspace_savepoints'
  5034.               'all_workspaces'
  5035.               'all_workspaces_internal'
  5036.               'all_xml_indexes'
  5037.               'all_xml_schemas'
  5038.               'all_xml_schemas2'
  5039.               'all_xml_tab_cols'
  5040.               'all_xml_tables'
  5041.               'all_xml_view_cols'
  5042.               'all_xml_views'
  5043.               'anonymous'
  5044.               'anydata'
  5045.               'anydataset'
  5046.               'anytype'
  5047.               'aq$_asap_in_table_f'
  5048.               'aq$_asap_in_table_g'
  5049.               'aq$_asap_in_table_h'
  5050.               'aq$_asap_in_table_i'
  5051.               'aq$_asap_in_table_n'
  5052.               'aq$_asap_in_table_s'
  5053.               'aq$_asap_in_table_t'
  5054.               'aq$_int_ifm_ars_all_mqtab_f'
  5055.               'aq$_int_ifm_ars_all_mqtab_g'
  5056.               'aq$_int_ifm_ars_all_mqtab_h'
  5057.               'aq$_int_ifm_ars_all_mqtab_i'
  5058.               'aq$_int_ifm_ars_all_mqtab_n'
  5059.               'aq$_int_ifm_ars_all_mqtab_s'
  5060.               'aq$_int_ifm_ars_all_mqtab_t'
  5061.               'aq$_qt_odac_dept_f'
  5062.               'aq$_qt_odac_raw_f'
  5063.               'aq$_replication_aq_qtab_f'
  5064.               'aq$_replication_aq_qtab_g'
  5065.               'aq$_replication_aq_qtab_h'
  5066.               'aq$_replication_aq_qtab_i'
  5067.               'aq$_replication_aq_qtab_n'
  5068.               'aq$_replication_aq_qtab_s'
  5069.               'aq$_replication_aq_qtab_t'
  5070.               'aq$asap_in_table'
  5071.               'aq$asap_in_table_r'
  5072.               'aq$asap_in_table_s'
  5073.               'aq$int_ifm_ars_all_mqtab'
  5074.               'aq$int_ifm_ars_all_mqtab_r'
  5075.               'aq$int_ifm_ars_all_mqtab_s'
  5076.               'aq$internet_users'
  5077.               'aq$qt_odac_dept'
  5078.               'aq$qt_odac_raw'
  5079.               'aq$replication_aq_qtab'
  5080.               'aq$replication_aq_qtab_r'
  5081.               'aq$replication_aq_qtab_s'
  5082.               'asap_in_table'
  5083.               'audit_actions'
  5084.               'ausleihe'
  5085.               'ausleihe_seq'
  5086.               'auswertung'
  5087.               'aut_seq'
  5088.               'autor'
  5089.               'autor_seq'
  5090.               'awrdrpt_text_type'
  5091.               'awrdrpt_text_type_table'
  5092.               'awrrpt_clb_ary'
  5093.               'awrrpt_html_type'
  5094.               'awrrpt_html_type_table'
  5095.               'awrrpt_num_ary'
  5096.               'awrrpt_row_type'
  5097.               'awrrpt_text_type'
  5098.               'awrrpt_text_type_table'
  5099.               'awrrpt_vch_ary'
  5100.               'awrsqrpt_text_type'
  5101.               'awrsqrpt_text_type_table'
  5102.               'bestellung'
  5103.               'bestellung_seq'
  5104.               'bi'
  5105.               'buch'
  5106.               'buch_pers_vw'
  5107.               'cat'
  5108.               'change_propagation_sets'
  5109.               'change_propagations'
  5110.               'change_sets'
  5111.               'change_sources'
  5112.               'change_tables'
  5113.               'circularstring'
  5114.               'clu'
  5115.               'cluster_rule_type'
  5116.               'cluster_type'
  5117.               'col'
  5118.               'cols'
  5119.               'column_privileges'
  5120.               'compoundcurve'
  5121.               'connectioninterface'
  5122.               'content_table'
  5123.               'crgrid_test'
  5124.               'cs_srs'
  5125.               'ctx_classes'
  5126.               'ctx_cls'
  5127.               'ctx_ddl'
  5128.               'ctx_doc'
  5129.               'ctx_index_set_indexes'
  5130.               'ctx_index_sets'
  5131.               'ctx_object_attribute_lov'
  5132.               'ctx_object_attributes'
  5133.               'ctx_objects'
  5134.               'ctx_output'
  5135.               'ctx_parameters'
  5136.               'ctx_preference_values'
  5137.               'ctx_preferences'
  5138.               'ctx_query'
  5139.               'ctx_report'
  5140.               'ctx_section_groups'
  5141.               'ctx_sections'
  5142.               'ctx_sqes'
  5143.               'ctx_stoplists'
  5144.               'ctx_stopwords'
  5145.               'ctx_sub_lexers'
  5146.               'ctx_thes'
  5147.               'ctx_thes_phrases'
  5148.               'ctx_thesauri'
  5149.               'ctx_trace_values'
  5150.               'ctx_ulexer'
  5151.               'ctx_user_index_errors'
  5152.               'ctx_user_index_objects'
  5153.               'ctx_user_index_partitions'
  5154.               'ctx_user_index_set_indexes'
  5155.               'ctx_user_index_sets'
  5156.               'ctx_user_index_sub_lexer_vals'
  5157.               'ctx_user_index_sub_lexers'
  5158.               'ctx_user_index_values'
  5159.               'ctx_user_indexes'
  5160.               'ctx_user_pending'
  5161.               'ctx_user_preference_values'
  5162.               'ctx_user_preferences'
  5163.               'ctx_user_section_groups'
  5164.               'ctx_user_sections'
  5165.               'ctx_user_sqes'
  5166.               'ctx_user_stoplists'
  5167.               'ctx_user_stopwords'
  5168.               'ctx_user_sub_lexers'
  5169.               'ctx_user_thes_phrases'
  5170.               'ctx_user_thesauri'
  5171.               'ctxsys'
  5172.               'cursormanagerinterface'
  5173.               'curve'
  5174.               'curvepolygon'
  5175.               'cwm_classify'
  5176.               'cwm_exceptions'
  5177.               'cwm_olap_cube'
  5178.               'cwm_olap_dim_attribute'
  5179.               'cwm_olap_dimension'
  5180.               'cwm_olap_hierarchy'
  5181.               'cwm_olap_level'
  5182.               'cwm_olap_level_attribute'
  5183.               'cwm_olap_measure'
  5184.               'cwm_utility'
  5185.               'cwm2_olap_aw_awutil'
  5186.               'cwm2_olap_catalog'
  5187.               'cwm2_olap_classify'
  5188.               'cwm2_olap_cube'
  5189.               'cwm2_olap_delete'
  5190.               'cwm2_olap_dimension'
  5191.               'cwm2_olap_dimension_attribute'
  5192.               'cwm2_olap_exceptions'
  5193.               'cwm2_olap_export'
  5194.               'cwm2_olap_hierarchy'
  5195.               'cwm2_olap_level'
  5196.               'cwm2_olap_level_attribute'
  5197.               'cwm2_olap_manager'
  5198.               'cwm2_olap_measure'
  5199.               'cwm2_olap_metadata_refresh'
  5200.               'cwm2_olap_mr_check_privs'
  5201.               'cwm2_olap_mr_security_init'
  5202.               'cwm2_olap_mr_session_pop'
  5203.               'cwm2_olap_olapapi_enable'
  5204.               'cwm2_olap_pc_transform'
  5205.               'cwm2_olap_table_map'
  5206.               'cwm2_olap_utility'
  5207.               'cwm2_olap_validate'
  5208.               'cwm2_olap_verify_access'
  5209.               'cwm2_security'
  5210.               'database_compatible_level'
  5211.               'database_export_objects'
  5212.               'database_properties'
  5213.               'databaseinterface'
  5214.               'dataproviderinterface'
  5215.               'datapump_object_connect'
  5216.               'datapump_pathmap'
  5217.               'datapump_paths'
  5218.               'datapump_remap_objects'
  5219.               'datapump_table_data'
  5220.               'datatypeidconstants'
  5221.               'dba_2pc_neighbors'
  5222.               'dba_2pc_pending'
  5223.               'dba_advisor_actions'
  5224.               'dba_advisor_commands'
  5225.               'dba_advisor_def_parameters'
  5226.               'dba_advisor_definitions'
  5227.               'dba_advisor_directives'
  5228.               'dba_advisor_findings'
  5229.               'dba_advisor_journal'
  5230.               'dba_advisor_log'
  5231.               'dba_advisor_object_types'
  5232.               'dba_advisor_objects'
  5233.               'dba_advisor_parameters'
  5234.               'dba_advisor_parameters_proj'
  5235.               'dba_advisor_rationale'
  5236.               'dba_advisor_recommendations'
  5237.               'dba_advisor_sqla_rec_sum'
  5238.               'dba_advisor_sqla_wk_map'
  5239.               'dba_advisor_sqla_wk_stmts'
  5240.               'dba_advisor_sqlw_colvol'
  5241.               'dba_advisor_sqlw_journal'
  5242.               'dba_advisor_sqlw_parameters'
  5243.               'dba_advisor_sqlw_stmts'
  5244.               'dba_advisor_sqlw_sum'
  5245.               'dba_advisor_sqlw_tables'
  5246.               'dba_advisor_sqlw_tabvol'
  5247.               'dba_advisor_sqlw_templates'
  5248.               'dba_advisor_tasks'
  5249.               'dba_advisor_templates'
  5250.               'dba_advisor_usage'
  5251.               'dba_alert_arguments'
  5252.               'dba_alert_history'
  5253.               'dba_all_tables'
  5254.               'dba_application_roles'
  5255.               'dba_apply'
  5256.               'dba_apply_conflict_columns'
  5257.               'dba_apply_dml_handlers'
  5258.               'dba_apply_enqueue'
  5259.               'dba_apply_error'
  5260.               'dba_apply_execute'
  5261.               'dba_apply_instantiated_global'
  5262.               'dba_apply_instantiated_objects'
  5263.               'dba_apply_instantiated_schemas'
  5264.               'dba_apply_key_columns'
  5265.               'dba_apply_object_dependencies'
  5266.               'dba_apply_parameters'
  5267.               'dba_apply_progress'
  5268.               'dba_apply_spill_txn'
  5269.               'dba_apply_table_columns'
  5270.               'dba_apply_value_dependencies'
  5271.               'dba_aq_agent_privs'
  5272.               'dba_aq_agents'
  5273.               'dba_arguments'
  5274.               'dba_associations'
  5275.               'dba_audit_exists'
  5276.               'dba_audit_object'
  5277.               'dba_audit_policies'
  5278.               'dba_audit_policy_columns'
  5279.               'dba_audit_session'
  5280.               'dba_audit_statement'
  5281.               'dba_audit_trail'
  5282.               'dba_auto_segadv_ctl'
  5283.               'dba_auto_segadv_summary'
  5284.               'dba_aw_obj'
  5285.               'dba_aw_prop'
  5286.               'dba_aw_ps'
  5287.               'dba_aws'
  5288.               'dba_base_table_mviews'
  5289.               'dba_blockers'
  5290.               'dba_cacheable_objects'
  5291.               'dba_cacheable_objects_base'
  5292.               'dba_cacheable_tables'
  5293.               'dba_capture'
  5294.               'dba_capture_extra_attributes'
  5295.               'dba_capture_parameters'
  5296.               'dba_capture_prepared_database'
  5297.               'dba_capture_prepared_schemas'
  5298.               'dba_capture_prepared_tables'
  5299.               'dba_catalog'
  5300.               'dba_change_notification_regs'
  5301.               'dba_clu_columns'
  5302.               'dba_cluster_hash_expressions'
  5303.               'dba_clusters'
  5304.               'dba_col_comments'
  5305.               'dba_col_privs'
  5306.               'dba_coll_types'
  5307.               'dba_common_audit_trail'
  5308.               'dba_connect_role_grantees'
  5309.               'dba_cons_columns'
  5310.               'dba_cons_obj_columns'
  5311.               'dba_constraints'
  5312.               'dba_context'
  5313.               'dba_cpu_usage_statistics'
  5314.               'dba_data_files'
  5315.               'dba_datapump_jobs'
  5316.               'dba_datapump_sessions'
  5317.               'dba_db_links'
  5318.               'dba_ddl_locks'
  5319.               'dba_dependencies'
  5320.               'dba_dim_attributes'
  5321.               'dba_dim_child_of'
  5322.               'dba_dim_hierarchies'
  5323.               'dba_dim_join_key'
  5324.               'dba_dim_level_key'
  5325.               'dba_dim_levels'
  5326.               'dba_dimensions'
  5327.               'dba_directories'
  5328.               'dba_dml_locks'
  5329.               'dba_dmt_free_space'
  5330.               'dba_dmt_used_extents'
  5331.               'dba_enabled_aggregations'
  5332.               'dba_enabled_traces'
  5333.               'dba_encrypted_columns'
  5334.               'dba_epg_dad_authorization'
  5335.               'dba_errors'
  5336.               'dba_evaluation_context_tables'
  5337.               'dba_evaluation_context_vars'
  5338.               'dba_evaluation_contexts'
  5339.               'dba_exp_files'
  5340.               'dba_exp_objects'
  5341.               'dba_exp_version'
  5342.               'dba_export_objects'
  5343.               'dba_extents'
  5344.               'dba_external_locations'
  5345.               'dba_external_tables'
  5346.               'dba_feature_usage_statistics'
  5347.               'dba_fga_audit_trail'
  5348.               'dba_file_group_export_info'
  5349.               'dba_file_group_files'
  5350.               'dba_file_group_tables'
  5351.               'dba_file_group_tablespaces'
  5352.               'dba_file_group_versions'
  5353.               'dba_file_groups'
  5354.               'dba_free_space'
  5355.               'dba_free_space_coalesced'
  5356.               'dba_geometry_columns'
  5357.               'dba_global_context'
  5358.               'dba_high_water_mark_statistics'
  5359.               'dba_hist_active_sess_history'
  5360.               'dba_hist_baseline'
  5361.               'dba_hist_bg_event_summary'
  5362.               'dba_hist_buffer_pool_stat'
  5363.               'dba_hist_buffered_queues'
  5364.               'dba_hist_buffered_subscribers'
  5365.               'dba_hist_comp_iostat'
  5366.               'dba_hist_cr_block_server'
  5367.               'dba_hist_current_block_server'
  5368.               'dba_hist_database_instance'
  5369.               'dba_hist_datafile'
  5370.               'dba_hist_db_cache_advice'
  5371.               'dba_hist_dlm_misc'
  5372.               'dba_hist_enqueue_stat'
  5373.               'dba_hist_event_name'
  5374.               'dba_hist_filemetric_history'
  5375.               'dba_hist_filestatxs'
  5376.               'dba_hist_inst_cache_transfer'
  5377.               'dba_hist_instance_recovery'
  5378.               'dba_hist_java_pool_advice'
  5379.               'dba_hist_latch'
  5380.               'dba_hist_latch_children'
  5381.               'dba_hist_latch_misses_summary'
  5382.               'dba_hist_latch_name'
  5383.               'dba_hist_latch_parent'
  5384.               'dba_hist_librarycache'
  5385.               'dba_hist_log'
  5386.               'dba_hist_metric_name'
  5387.               'dba_hist_mttr_target_advice'
  5388.               'dba_hist_optimizer_env'
  5389.               'dba_hist_osstat'
  5390.               'dba_hist_osstat_name'
  5391.               'dba_hist_parameter'
  5392.               'dba_hist_parameter_name'
  5393.               'dba_hist_pga_target_advice'
  5394.               'dba_hist_pgastat'
  5395.               'dba_hist_process_mem_summary'
  5396.               'dba_hist_resource_limit'
  5397.               'dba_hist_rowcache_summary'
  5398.               'dba_hist_rule_set'
  5399.               'dba_hist_seg_stat'
  5400.               'dba_hist_seg_stat_obj'
  5401.               'dba_hist_service_name'
  5402.               'dba_hist_service_stat'
  5403.               'dba_hist_service_wait_class'
  5404.               'dba_hist_sess_time_stats'
  5405.               'dba_hist_sessmetric_history'
  5406.               'dba_hist_sga'
  5407.               'dba_hist_sga_target_advice'
  5408.               'dba_hist_sgastat'
  5409.               'dba_hist_shared_pool_advice'
  5410.               'dba_hist_snap_error'
  5411.               'dba_hist_snapshot'
  5412.               'dba_hist_sql_bind_metadata'
  5413.               'dba_hist_sql_plan'
  5414.               'dba_hist_sql_summary'
  5415.               'dba_hist_sql_workarea_hstgrm'
  5416.               'dba_hist_sqlbind'
  5417.               'dba_hist_sqlstat'
  5418.               'dba_hist_sqltext'
  5419.               'dba_hist_stat_name'
  5420.               'dba_hist_streams_apply_sum'
  5421.               'dba_hist_streams_capture'
  5422.               'dba_hist_streams_pool_advice'
  5423.               'dba_hist_sys_time_model'
  5424.               'dba_hist_sysmetric_history'
  5425.               'dba_hist_sysmetric_summary'
  5426.               'dba_hist_sysstat'
  5427.               'dba_hist_system_event'
  5428.               'dba_hist_tablespace_stat'
  5429.               'dba_hist_tbspc_space_usage'
  5430.               'dba_hist_tempfile'
  5431.               'dba_hist_tempstatxs'
  5432.               'dba_hist_thread'
  5433.               'dba_hist_undostat'
  5434.               'dba_hist_waitclassmet_history'
  5435.               'dba_hist_waitstat'
  5436.               'dba_hist_wr_control'
  5437.               'dba_histograms'
  5438.               'dba_ias_gen_stmts'
  5439.               'dba_ias_objects'
  5440.               'dba_ias_sites'
  5441.               'dba_ias_templates'
  5442.               'dba_ind_columns'
  5443.               'dba_ind_expressions'
  5444.               'dba_ind_partitions'
  5445.               'dba_ind_statistics'
  5446.               'dba_ind_subpartitions'
  5447.               'dba_indexes'
  5448.               'dba_indextype_arraytypes'
  5449.               'dba_indextype_comments'
  5450.               'dba_indextype_operators'
  5451.               'dba_indextypes'
  5452.               'dba_internal_triggers'
  5453.               'dba_java_arguments'
  5454.               'dba_java_classes'
  5455.               'dba_java_derivations'
  5456.               'dba_java_fields'
  5457.               'dba_java_implements'
  5458.               'dba_java_inners'
  5459.               'dba_java_layouts'
  5460.               'dba_java_methods'
  5461.               'dba_java_ncomps'
  5462.               'dba_java_policy'
  5463.               'dba_java_resolvers'
  5464.               'dba_java_throws'
  5465.               'dba_jobs'
  5466.               'dba_jobs_running'
  5467.               'dba_join_ind_columns'
  5468.               'dba_kgllock'
  5469.               'dba_libraries'
  5470.               'dba_lmt_free_space'
  5471.               'dba_lmt_used_extents'
  5472.               'dba_lob_partitions'
  5473.               'dba_lob_subpartitions'
  5474.               'dba_lob_templates'
  5475.               'dba_lobs'
  5476.               'dba_lock'
  5477.               'dba_lock_internal'
  5478.               'dba_locks'
  5479.               'dba_log_group_columns'
  5480.               'dba_log_groups'
  5481.               'dba_logmnr_log'
  5482.               'dba_logmnr_purged_log'
  5483.               'dba_logmnr_session'
  5484.               'dba_logstdby_events'
  5485.               'dba_logstdby_history'
  5486.               'dba_logstdby_log'
  5487.               'dba_logstdby_not_unique'
  5488.               'dba_logstdby_parameters'
  5489.               'dba_logstdby_progress'
  5490.               'dba_logstdby_skip'
  5491.               'dba_logstdby_skip_transaction'
  5492.               'dba_logstdby_unsupported'
  5493.               'dba_method_params'
  5494.               'dba_method_results'
  5495.               'dba_mview_aggregates'
  5496.               'dba_mview_analysis'
  5497.               'dba_mview_comments'
  5498.               'dba_mview_detail_relations'
  5499.               'dba_mview_joins'
  5500.               'dba_mview_keys'
  5501.               'dba_mview_log_filter_cols'
  5502.               'dba_mview_logs'
  5503.               'dba_mview_refresh_times'
  5504.               'dba_mviews'
  5505.               'dba_nested_table_cols'
  5506.               'dba_nested_tables'
  5507.               'dba_obj_audit_opts'
  5508.               'dba_obj_colattrs'
  5509.               'dba_object_size'
  5510.               'dba_object_tables'
  5511.               'dba_objects'
  5512.               'dba_olap_catalog_entity_uses'
  5513.               'dba_olap_catalogs'
  5514.               'dba_olap_columns'
  5515.               'dba_olap_cube_dim_uses'
  5516.               'dba_olap_cube_measure_dim_uses'
  5517.               'dba_olap_cube_measure_maps'
  5518.               'dba_olap_cube_measures'
  5519.               'dba_olap_cubes'
  5520.               'dba_olap_descriptor_types'
  5521.               'dba_olap_descriptors'
  5522.               'dba_olap_dim_attr_uses'
  5523.               'dba_olap_dim_attributes'
  5524.               'dba_olap_dim_hier_level_uses'
  5525.               'dba_olap_dim_hierarchies'
  5526.               'dba_olap_dim_level_attr_maps'
  5527.               'dba_olap_dim_level_attributes'
  5528.               'dba_olap_dim_levels'
  5529.               'dba_olap_dimensions'
  5530.               'dba_olap_entity_desc_uses'
  5531.               'dba_olap_fact_level_uses'
  5532.               'dba_olap_foreign_keys'
  5533.               'dba_olap_function_arguments'
  5534.               'dba_olap_function_parameters'
  5535.               'dba_olap_function_usages'
  5536.               'dba_olap_functions'
  5537.               'dba_olap_join_key_column_uses'
  5538.               'dba_olap_key_column_uses'
  5539.               'dba_olap_keys'
  5540.               'dba_olap_level_key_column_uses'
  5541.               'dba_olap_tables'
  5542.               'dba_olap1_cubes'
  5543.               'dba_olap2_aggregation_uses'
  5544.               'dba_olap2_awviewcols'
  5545.               'dba_olap2_awviews'
  5546.               'dba_olap2_catalog_entity_uses'
  5547.               'dba_olap2_catalogs'
  5548.               'dba_olap2_cube_dim_uses'
  5549.               'dba_olap2_cube_meas_dim_uses'
  5550.               'dba_olap2_cube_measure_maps'
  5551.               'dba_olap2_cube_measures'
  5552.               'dba_olap2_cubes'
  5553.               'dba_olap2_dim_attr_uses'
  5554.               'dba_olap2_dim_attributes'
  5555.               'dba_olap2_dim_hier_level_uses'
  5556.               'dba_olap2_dim_hierarchies'
  5557.               'dba_olap2_dim_hiers'
  5558.               'dba_olap2_dim_level_attr_maps'
  5559.               'dba_olap2_dim_level_attributes'
  5560.               'dba_olap2_dim_levels'
  5561.               'dba_olap2_dim_levels_keymaps'
  5562.               'dba_olap2_dimensions'
  5563.               'dba_olap2_entity_desc_uses'
  5564.               'dba_olap2_entity_ext_parms'
  5565.               'dba_olap2_entity_parameters'
  5566.               'dba_olap2_fact_level_uses'
  5567.               'dba_olap2_fact_table_gid'
  5568.               'dba_olap2_facttblfctmaps'
  5569.               'dba_olap2_facttblkeymaps'
  5570.               'dba_olap2_hier_custom_sort'
  5571.               'dba_olap2_hierdim_keycol_map'
  5572.               'dba_olap2_hierdims'
  5573.               'dba_olap2_join_key_column_uses'
  5574.               'dba_olap2_level_key_col_uses'
  5575.               'dba_olap2_listdims'
  5576.               'dba_olap2_mr_measdimview'
  5577.               'dba_olap2_rufcttblkymaps'
  5578.               'dba_olap9i1_hier_dimensions'
  5579.               'dba_olap9i2_hier_dimensions'
  5580.               'dba_olapmr_dim_levels_keymaps'
  5581.               'dba_olapmr_facttblfctmaps'
  5582.               'dba_olapmr_facttblkeymaps'
  5583.               'dba_opancillary'
  5584.               'dba_oparguments'
  5585.               'dba_opbindings'
  5586.               'dba_operator_comments'
  5587.               'dba_operators'
  5588.               'dba_optstat_operations'
  5589.               'dba_outline_hints'
  5590.               'dba_outlines'
  5591.               'dba_outstanding_alerts'
  5592.               'dba_part_col_statistics'
  5593.               'dba_part_histograms'
  5594.               'dba_part_indexes'
  5595.               'dba_part_key_columns'
  5596.               'dba_part_lobs'
  5597.               'dba_part_tables'
  5598.               'dba_partial_drop_tabs'
  5599.               'dba_pending_conv_tables'
  5600.               'dba_pending_transactions'
  5601.               'dba_plsql_object_settings'
  5602.               'dba_policies'
  5603.               'dba_policy_contexts'
  5604.               'dba_policy_groups'
  5605.               'dba_priv_audit_opts'
  5606.               'dba_procedures'
  5607.               'dba_profiles'
  5608.               'dba_propagation'
  5609.               'dba_proxies'
  5610.               'dba_published_columns'
  5611.               'dba_queue_publishers'
  5612.               'dba_queue_schedules'
  5613.               'dba_queue_subscribers'
  5614.               'dba_queue_tables'
  5615.               'dba_queues'
  5616.               'dba_rchild'
  5617.               'dba_recoverable_script'
  5618.               'dba_recoverable_script_blocks'
  5619.               'dba_recoverable_script_errors'
  5620.               'dba_recoverable_script_params'
  5621.               'dba_recyclebin'
  5622.               'dba_redefinition_errors'
  5623.               'dba_redefinition_objects'
  5624.               'dba_refresh'
  5625.               'dba_refresh_children'
  5626.               'dba_refs'
  5627.               'dba_registered_archived_log'
  5628.               'dba_registered_mview_groups'
  5629.               'dba_registered_mviews'
  5630.               'dba_registered_snapshot_groups'
  5631.               'dba_registered_snapshots'
  5632.               'dba_registry'
  5633.               'dba_registry_hierarchy'
  5634.               'dba_registry_history'
  5635.               'dba_registry_log'
  5636.               'dba_repaudit_attribute'
  5637.               'dba_repaudit_column'
  5638.               'dba_repcat'
  5639.               'dba_repcat_exceptions'
  5640.               'dba_repcat_refresh_templates'
  5641.               'dba_repcat_template_objects'
  5642.               'dba_repcat_template_parms'
  5643.               'dba_repcat_template_sites'
  5644.               'dba_repcat_user_authorizations'
  5645.               'dba_repcat_user_parm_values'
  5646.               'dba_repcatlog'
  5647.               'dba_repcolumn'
  5648.               'dba_repcolumn_group'
  5649.               'dba_repconflict'
  5650.               'dba_repddl'
  5651.               'dba_repextensions'
  5652.               'dba_repflavor_columns'
  5653.               'dba_repflavor_objects'
  5654.               'dba_repflavors'
  5655.               'dba_repgenerated'
  5656.               'dba_repgenobjects'
  5657.               'dba_repgroup'
  5658.               'dba_repgroup_privileges'
  5659.               'dba_repgrouped_column'
  5660.               'dba_repkey_columns'
  5661.               'dba_repobject'
  5662.               'dba_repparameter_column'
  5663.               'dba_reppriority'
  5664.               'dba_reppriority_group'
  5665.               'dba_repprop'
  5666.               'dba_represol_stats_control'
  5667.               'dba_represolution'
  5668.               'dba_represolution_method'
  5669.               'dba_represolution_statistics'
  5670.               'dba_repschema'
  5671.               'dba_repsites'
  5672.               'dba_repsites_new'
  5673.               'dba_resource_incarnations'
  5674.               'dba_resumable'
  5675.               'dba_rewrite_equivalences'
  5676.               'dba_rgroup'
  5677.               'dba_role_privs'
  5678.               'dba_roles'
  5679.               'dba_rollback_segs'
  5680.               'dba_rsrc_consumer_group_privs'
  5681.               'dba_rsrc_consumer_groups'
  5682.               'dba_rsrc_group_mappings'
  5683.               'dba_rsrc_manager_system_privs'
  5684.               'dba_rsrc_mapping_priority'
  5685.               'dba_rsrc_plan_directives'
  5686.               'dba_rsrc_plans'
  5687.               'dba_rule_set_rules'
  5688.               'dba_rule_sets'
  5689.               'dba_rules'
  5690.               'dba_rulesets'
  5691.               'dba_scheduler_chain_rules'
  5692.               'dba_scheduler_chain_steps'
  5693.               'dba_scheduler_chains'
  5694.               'dba_scheduler_global_attribute'
  5695.               'dba_scheduler_job_args'
  5696.               'dba_scheduler_job_classes'
  5697.               'dba_scheduler_job_log'
  5698.               'dba_scheduler_job_run_details'
  5699.               'dba_scheduler_jobs'
  5700.               'dba_scheduler_program_args'
  5701.               'dba_scheduler_programs'
  5702.               'dba_scheduler_running_chains'
  5703.               'dba_scheduler_running_jobs'
  5704.               'dba_scheduler_schedules'
  5705.               'dba_scheduler_window_details'
  5706.               'dba_scheduler_window_groups'
  5707.               'dba_scheduler_window_log'
  5708.               'dba_scheduler_windows'
  5709.               'dba_scheduler_wingroup_members'
  5710.               'dba_sdo_maps'
  5711.               'dba_sdo_styles'
  5712.               'dba_sdo_themes'
  5713.               'dba_sec_relevant_cols'
  5714.               'dba_secondary_objects'
  5715.               'dba_segments'
  5716.               'dba_segments_old'
  5717.               'dba_sequences'
  5718.               'dba_server_registry'
  5719.               'dba_services'
  5720.               'dba_snapshot_log_filter_cols'
  5721.               'dba_snapshot_logs'
  5722.               'dba_snapshot_refresh_times'
  5723.               'dba_snapshots'
  5724.               'dba_source'
  5725.               'dba_source_tables'
  5726.               'dba_sql_profiles'
  5727.               'dba_sqlj_type_attrs'
  5728.               'dba_sqlj_type_methods'
  5729.               'dba_sqlj_types'
  5730.               'dba_sqlset'
  5731.               'dba_sqlset_binds'
  5732.               'dba_sqlset_definitions'
  5733.               'dba_sqlset_plans'
  5734.               'dba_sqlset_references'
  5735.               'dba_sqlset_statements'
  5736.               'dba_sqltune_binds'
  5737.               'dba_sqltune_plans'
  5738.               'dba_sqltune_rationale_plan'
  5739.               'dba_sqltune_statistics'
  5740.               'dba_stmt_audit_opts'
  5741.               'dba_stored_settings'
  5742.               'dba_streams_add_column'
  5743.               'dba_streams_administrator'
  5744.               'dba_streams_delete_column'
  5745.               'dba_streams_global_rules'
  5746.               'dba_streams_message_consumers'
  5747.               'dba_streams_message_rules'
  5748.               'dba_streams_newly_supported'
  5749.               'dba_streams_rename_column'
  5750.               'dba_streams_rename_schema'
  5751.               'dba_streams_rename_table'
  5752.               'dba_streams_rules'
  5753.               'dba_streams_schema_rules'
  5754.               'dba_streams_table_rules'
  5755.               'dba_streams_transform_function'
  5756.               'dba_streams_transformations'
  5757.               'dba_streams_unsupported'
  5758.               'dba_subpart_col_statistics'
  5759.               'dba_subpart_histograms'
  5760.               'dba_subpart_key_columns'
  5761.               'dba_subpartition_templates'
  5762.               'dba_subscribed_columns'
  5763.               'dba_subscribed_tables'
  5764.               'dba_subscriptions'
  5765.               'dba_summaries'
  5766.               'dba_summary_aggregates'
  5767.               'dba_summary_detail_tables'
  5768.               'dba_summary_joins'
  5769.               'dba_summary_keys'
  5770.               'dba_synonyms'
  5771.               'dba_sys_privs'
  5772.               'dba_tab_col_statistics'
  5773.               'dba_tab_cols'
  5774.               'dba_tab_columns'
  5775.               'dba_tab_comments'
  5776.               'dba_tab_histograms'
  5777.               'dba_tab_partitions'
  5778.               'dba_tab_privs'
  5779.               'dba_tab_statistics'
  5780.               'dba_tab_stats_history'
  5781.               'dba_tab_subpartitions'
  5782.               'dba_tables'
  5783.               'dba_tablespace_groups'
  5784.               'dba_tablespace_usage_metrics'
  5785.               'dba_tablespaces'
  5786.               'dba_temp_files'
  5787.               'dba_template_refgroups'
  5788.               'dba_template_targets'
  5789.               'dba_thresholds'
  5790.               'dba_trigger_cols'
  5791.               'dba_triggers'
  5792.               'dba_ts_quotas'
  5793.               'dba_tsm_destination'
  5794.               'dba_tsm_history'
  5795.               'dba_tsm_source'
  5796.               'dba_tune_mview'
  5797.               'dba_type_attrs'
  5798.               'dba_type_methods'
  5799.               'dba_type_versions'
  5800.               'dba_types'
  5801.               'dba_undo_extents'
  5802.               'dba_unused_col_tabs'
  5803.               'dba_updatable_columns'
  5804.               'dba_users'
  5805.               'dba_ustats'
  5806.               'dba_varrays'
  5807.               'dba_views'
  5808.               'dba_waiters'
  5809.               'dba_warning_settings'
  5810.               'dba_wm_sys_privs'
  5811.               'dba_wm_versioned_tables'
  5812.               'dba_wm_vt_errors'
  5813.               'dba_workspace_privs'
  5814.               'dba_workspace_savepoints'
  5815.               'dba_workspace_sessions'
  5816.               'dba_workspaces'
  5817.               'dba_xml_indexes'
  5818.               'dba_xml_schemas'
  5819.               'dba_xml_tab_cols'
  5820.               'dba_xml_tables'
  5821.               'dba_xml_view_cols'
  5822.               'dba_xml_views'
  5823.               'dbms_advisor'
  5824.               'dbms_alert'
  5825.               'dbms_application_info'
  5826.               'dbms_apply_adm'
  5827.               'dbms_aq'
  5828.               'dbms_aq_exp_cmt_time_tables'
  5829.               'dbms_aq_exp_history_tables'
  5830.               'dbms_aq_exp_index_tables'
  5831.               'dbms_aq_exp_queue_tables'
  5832.               'dbms_aq_exp_queues'
  5833.               'dbms_aq_exp_signature_tables'
  5834.               'dbms_aq_exp_subscriber_tables'
  5835.               'dbms_aq_exp_timemgr_tables'
  5836.               'dbms_aq_exp_zecurity'
  5837.               'dbms_aq_imp_internal'
  5838.               'dbms_aq_imp_zecurity'
  5839.               'dbms_aq_sys_exp_actions'
  5840.               'dbms_aq_sys_exp_internal'
  5841.               'dbms_aq_sys_imp_internal'
  5842.               'dbms_aqadm'
  5843.               'dbms_aqadm_syscalls'
  5844.               'dbms_aqelm'
  5845.               'dbms_aqin'
  5846.               'dbms_aqjms'
  5847.               'dbms_aqjms_internal'
  5848.               'dbms_assert'
  5849.               'dbms_aw'
  5850.               'dbms_aw$_columnlist_t'
  5851.               'dbms_aw$_dimension_source_t'
  5852.               'dbms_aw$_dimension_sources_t'
  5853.               'dbms_aw_exp'
  5854.               'dbms_aw_utilities'
  5855.               'dbms_aw_xml'
  5856.               'dbms_awm'
  5857.               'dbms_capture_adm'
  5858.               'dbms_cdc_dputil'
  5859.               'dbms_cdc_expdp'
  5860.               'dbms_cdc_expvdp'
  5861.               'dbms_cdc_impdp'
  5862.               'dbms_cdc_ipublish'
  5863.               'dbms_cdc_isubscribe'
  5864.               'dbms_cdc_publish'
  5865.               'dbms_cdc_subscribe'
  5866.               'dbms_cdc_sys_ipublish'
  5867.               'dbms_change_notification'
  5868.               'dbms_crypto'
  5869.               'dbms_crypto_toolkit'
  5870.               'dbms_data_mining'
  5871.               'dbms_data_mining_transform'
  5872.               'dbms_datapump'
  5873.               'dbms_db_version'
  5874.               'dbms_dblink'
  5875.               'dbms_ddl'
  5876.               'dbms_ddl_internal'
  5877.               'dbms_debug'
  5878.               'dbms_debug_jdwp'
  5879.               'dbms_debug_jdwp_custom'
  5880.               'dbms_defer'
  5881.               'dbms_defer_query'
  5882.               'dbms_defer_sys'
  5883.               'dbms_defergen'
  5884.               'dbms_describe'
  5885.               'dbms_dimension'
  5886.               'dbms_distributed_trust_admin'
  5887.               'dbms_dm_model_imp'
  5888.               'dbms_epg'
  5889.               'dbms_errlog'
  5890.               'dbms_expfil'
  5891.               'dbms_fbt'
  5892.               'dbms_feature_usage_report'
  5893.               'dbms_fga'
  5894.               'dbms_file_group'
  5895.               'dbms_file_transfer'
  5896.               'dbms_flashback'
  5897.               'dbms_frequent_itemset'
  5898.               'dbms_hs'
  5899.               'dbms_ias_configure'
  5900.               'dbms_ias_inst'
  5901.               'dbms_ias_mt_inst'
  5902.               'dbms_ias_query'
  5903.               'dbms_ias_session'
  5904.               'dbms_ias_template'
  5905.               'dbms_index_utl'
  5906.               'dbms_internal_repcat'
  5907.               'dbms_java'
  5908.               'dbms_java_dump'
  5909.               'dbms_java_test'
  5910.               'dbms_job'
  5911.               'dbms_jvm_exp_perms'
  5912.               'dbms_lcr'
  5913.               'dbms_ldap'
  5914.               'dbms_ldap_utl'
  5915.               'dbms_lob'
  5916.               'dbms_lock'
  5917.               'dbms_logmnr_cdc_publish'
  5918.               'dbms_logmnr_cdc_subscribe'
  5919.               'dbms_logstdby'
  5920.               'dbms_metadata'
  5921.               'dbms_metadata_build'
  5922.               'dbms_metadata_dpbuild'
  5923.               'dbms_monitor'
  5924.               'dbms_mview'
  5925.               'dbms_obfuscation_toolkit'
  5926.               'dbms_odci'
  5927.               'dbms_odm'
  5928.               'dbms_offline_og'
  5929.               'dbms_offline_rgt'
  5930.               'dbms_offline_snapshot'
  5931.               'dbms_olap'
  5932.               'dbms_outln'
  5933.               'dbms_outln_edit'
  5934.               'dbms_output'
  5935.               'dbms_pclxutil'
  5936.               'dbms_pickler'
  5937.               'dbms_pipe'
  5938.               'dbms_predictive_analytics'
  5939.               'dbms_preprocessor'
  5940.               'dbms_profiler'
  5941.               'dbms_propagation_adm'
  5942.               'dbms_psp'
  5943.               'dbms_pswmg_import'
  5944.               'dbms_random'
  5945.               'dbms_rectifier_diff'
  5946.               'dbms_redefinition'
  5947.               'dbms_refresh'
  5948.               'dbms_registry'
  5949.               'dbms_repcat'
  5950.               'dbms_repcat_admin'
  5951.               'dbms_repcat_auth'
  5952.               'dbms_repcat_decl'
  5953.               'dbms_repcat_instantiate'
  5954.               'dbms_repcat_internal'
  5955.               'dbms_repcat_internal_package'
  5956.               'dbms_repcat_mig'
  5957.               'dbms_repcat_rgt'
  5958.               'dbms_repcat_validate'
  5959.               'dbms_reputil'
  5960.               'dbms_reputil2'
  5961.               'dbms_resource_manager'
  5962.               'dbms_resource_manager_privs'
  5963.               'dbms_resumable'
  5964.               'dbms_rlmgr'
  5965.               'dbms_rls'
  5966.               'dbms_rmgr_group_export'
  5967.               'dbms_rmgr_pact_export'
  5968.               'dbms_rmgr_plan_export'
  5969.               'dbms_rmin'
  5970.               'dbms_rowid'
  5971.               'dbms_rule'
  5972.               'dbms_rule_adm'
  5973.               'dbms_rule_compatible_90'
  5974.               'dbms_rule_exp_ec_internal'
  5975.               'dbms_rule_exp_ev_ctxs'
  5976.               'dbms_rule_exp_rl_internal'
  5977.               'dbms_rule_exp_rs_internal'
  5978.               'dbms_rule_exp_rule_sets'
  5979.               'dbms_rule_exp_rules'
  5980.               'dbms_rule_imp_obj'
  5981.               'dbms_ruleadm_internal'
  5982.               'dbms_sched_chain_export'
  5983.               'dbms_sched_class_export'
  5984.               'dbms_sched_export_callouts'
  5985.               'dbms_sched_job_export'
  5986.               'dbms_sched_program_export'
  5987.               'dbms_sched_schedule_export'
  5988.               'dbms_sched_window_export'
  5989.               'dbms_sched_wingrp_export'
  5990.               'dbms_scheduler'
  5991.               'dbms_server_alert'
  5992.               'dbms_server_alert_export'
  5993.               'dbms_server_trace'
  5994.               'dbms_service'
  5995.               'dbms_session'
  5996.               'dbms_snapshot'
  5997.               'dbms_space'
  5998.               'dbms_space_admin'
  5999.               'dbms_sql'
  6000.               'dbms_sqlhash'
  6001.               'dbms_sqlplus_script'
  6002.               'dbms_sqltune'
  6003.               'dbms_standard'
  6004.               'dbms_stat_funcs'
  6005.               'dbms_stat_funcs_aux'
  6006.               'dbms_stats'
  6007.               'dbms_storage_map'
  6008.               'dbms_streams'
  6009.               'dbms_streams_adm'
  6010.               'dbms_streams_auth'
  6011.               'dbms_streams_lcr_int'
  6012.               'dbms_streams_messaging'
  6013.               'dbms_streams_rpc'
  6014.               'dbms_streams_tablespace_adm'
  6015.               'dbms_sum_rweq_export'
  6016.               'dbms_sum_rweq_export_internal'
  6017.               'dbms_summary'
  6018.               'dbms_tde_toolkit'
  6019.               'dbms_trace'
  6020.               'dbms_transaction'
  6021.               'dbms_transaction_internal_sys'
  6022.               'dbms_transform'
  6023.               'dbms_transform_eximp'
  6024.               'dbms_tsm_prvt'
  6025.               'dbms_type_utility'
  6026.               'dbms_types'
  6027.               'dbms_undo_adv'
  6028.               'dbms_utility'
  6029.               'dbms_warning'
  6030.               'dbms_wm'
  6031.               'dbms_workload_repository'
  6032.               'dbms_xdb'
  6033.               'dbms_xdb_version'
  6034.               'dbms_xdbutil_int'
  6035.               'dbms_xdbz'
  6036.               'dbms_xdbz0'
  6037.               'dbms_xmldom'
  6038.               'dbms_xmlgen'
  6039.               'dbms_xmlindex'
  6040.               'dbms_xmlparser'
  6041.               'dbms_xmlquery'
  6042.               'dbms_xmlsave'
  6043.               'dbms_xmlschema'
  6044.               'dbms_xmlstore'
  6045.               'dbms_xplan'
  6046.               'dbms_xslprocessor'
  6047.               'dbms_xsoq'
  6048.               'dbms_xsoq_odbo'
  6049.               'dbms_xsoq_util'
  6050.               'dbms_zhelp'
  6051.               'dbms_zhelp_ir'
  6052.               'dbmshsxp'
  6053.               'dbmshsxp_sql_profile_attr'
  6054.               'dbmsobjgwrapper'
  6055.               'dbmsoutput_linesarray'
  6056.               'dbmszexp_syspkggrnt'
  6057.               'dbsnmp'
  6058.               'dburitype'
  6059.               'defcall'
  6060.               'defcalldest'
  6061.               'defdefaultdest'
  6062.               'deferrcount'
  6063.               'deferror'
  6064.               'definitionmanagerinterface'
  6065.               'deflob'
  6066.               'defpropagator'
  6067.               'defschedule'
  6068.               'deftran'
  6069.               'deftrandest'
  6070.               'dept'
  6071.               'dict'
  6072.               'dict_columns'
  6073.               'dictionary'
  6074.               'dip'
  6075.               'dm_abn_detail'
  6076.               'dm_abn_details'
  6077.               'dm_centroid'
  6078.               'dm_centroids'
  6079.               'dm_child'
  6080.               'dm_children'
  6081.               'dm_cluster'
  6082.               'dm_clusters'
  6083.               'dm_conditional'
  6084.               'dm_conditionals'
  6085.               'dm_histogram_bin'
  6086.               'dm_histograms'
  6087.               'dm_items'
  6088.               'dm_itemset'
  6089.               'dm_itemsets'
  6090.               'dm_model_setting'
  6091.               'dm_model_settings'
  6092.               'dm_model_signature'
  6093.               'dm_model_signature_attribute'
  6094.               'dm_nb_detail'
  6095.               'dm_nb_details'
  6096.               'dm_nested_categorical'
  6097.               'dm_nested_categoricals'
  6098.               'dm_nested_numerical'
  6099.               'dm_nested_numericals'
  6100.               'dm_nmf_attribute'
  6101.               'dm_nmf_attribute_set'
  6102.               'dm_nmf_feature'
  6103.               'dm_nmf_feature_set'
  6104.               'dm_predicate'
  6105.               'dm_predicates'
  6106.               'dm_ranked_attribute'
  6107.               'dm_ranked_attributes'
  6108.               'dm_rule'
  6109.               'dm_rules'
  6110.               'dm_svm_attribute'
  6111.               'dm_svm_attribute_set'
  6112.               'dm_svm_linear_coeff'
  6113.               'dm_svm_linear_coeff_set'
  6114.               'dm_user_models'
  6115.               'dmbgos'
  6116.               'dmp_sys'
  6117.               'dmsys'
  6118.               'drvodm'
  6119.               'dual'
  6120.               'emp'
  6121.               'errormsg'
  6122.               'exf$attribute'
  6123.               'exf$attribute_list'
  6124.               'exf$indexoper'
  6125.               'exf$table_alias'
  6126.               'exf$xpath_tag'
  6127.               'exf$xpath_tags'
  6128.               'exfsys'
  6129.               'explainmvarraytype'
  6130.               'explainmvmessage'
  6131.               'flashback_transaction_query'
  6132.               'ftpuritype'
  6133.               'functionidconstants'
  6134.               'genbaseonlydefinitionstruct'
  6135.               'genbooleansequence'
  6136.               'gencomparisonruleenum'
  6137.               'gencompoundcursorblocksequence'
  6138.               'gencompoundcursorblockstruct'
  6139.               'genconnectioninterface'
  6140.               'genconnectionparameterinfosequ'
  6141.               'genconnectionparameterinfostru'
  6142.               'genconnectionparametertypeenum'
  6143.               'genconnectionstruct'
  6144.               'genconstantlistdefinitionstruc'
  6145.               'genconstantlistvaluesunion'
  6146.               'gencursorblock2sequence'
  6147.               'gencursorblock2struct'
  6148.               'gencursorblocksequence'
  6149.               'gencursorblockstruct'
  6150.               'gencursormanagerinterface'
  6151.               'gencursormanagersequence'
  6152.               'gencursorspecifiersequence'
  6153.               'gencursorspecifiersequencesequ'
  6154.               'gencursorspecifierstruct'
  6155.               'gencursorvalue2union'
  6156.               'gencursorvalue2unionsequence'
  6157.               'gencursorvalues2union'
  6158.               'gencursorvaluesunion'
  6159.               'gencursorvalueunion'
  6160.               'gencursorvalueunionsequence'
  6161.               'gendata2sequenceunion'
  6162.               'gendata2union'
  6163.               'gendata2unionsequence'
  6164.               'gendatabaseinterface'
  6165.               'gendatablock2sequence'
  6166.               'gendatablock2struct'
  6167.               'gendatablocksequence'
  6168.               'gendatablockstruct'
  6169.               'gendataproviderinterface'
  6170.               'gendatasequenceunion'
  6171.               'gendatatypeidconstants'
  6172.               'gendataunion'
  6173.               'gendataunionsequence'
  6174.               'gendatesequence'
  6175.               'gendefinitionmanagerinterface'
  6176.               'gendefinitionpost92sequence'
  6177.               'gendefinitionpost92union'
  6178.               'gendefinitionsequence'
  6179.               'gendefinitionunion'
  6180.               'gendependencyblocksequence'
  6181.               'gendependencyblocksequencesequ'
  6182.               'gendependencyblockstruct'
  6183.               'gendependencyblockunion'
  6184.               'gendomainenum'
  6185.               'gendoublesequence'
  6186.               'gendynamicdefinitionstruct'
  6187.               'generrorclassenum'
  6188.               'generrordescriptionsequence'
  6189.               'generrordescriptionstruct'
  6190.               'generrortypeenum'
  6191.               'genexpressexception'
  6192.               'genfloatsequence'
  6193.               'genincludeddependencyblockstru'
  6194.               'genindexblockstruct'
  6195.               'geninterfacestub'
  6196.               'geninterfacestubsequence'
  6197.               'geninterruptableinterface'
  6198.               'geninvalidindexspecificationex'
  6199.               'geninvalidmetadataexception'
  6200.               'genjoindefinitionstruct'
  6201.               'genlonglongsequence'
  6202.               'genlongsequence'
  6203.               'genmdmclassconstants'
  6204.               'genmdmobjectidconstants'
  6205.               'genmdmpropertyidconstants'
  6206.               'genmetadatadefinitionstruct'
  6207.               'genmetadatapropertybagsequence'
  6208.               'genmetadatapropertybagunion'
  6209.               'genmetadatapropertysequence'
  6210.               'genmetadatapropertystruct'
  6211.               'genmetadatapropertyvaluesunion'
  6212.               'genmetadataproviderinterface'
  6213.               'genmultiplierblockstruct'
  6214.               'genoctetsequence'
  6215.               'genolapiexception'
  6216.               'genparentstartendblock2sequenc'
  6217.               'genparentstartendblock2union'
  6218.               'genparentstartendblocksequence'
  6219.               'genparentstartendblockunion'
  6220.               'genpersistentsourceidsequence'
  6221.               'genpersistentsourceidstruct'
  6222.               'genpropertysequence'
  6223.               'genpropertystruct'
  6224.               'genrangedefinitionstruct'
  6225.               'genrawsequence'
  6226.               'genrecursivejoindefinitionstru'
  6227.               'genremoteapiversionmismatchexc'
  6228.               'genremoteauthenticationexcepti'
  6229.               'genremoteobjectclosedexception'
  6230.               'genremotespecificationupdatene'
  6231.               'genremotetaskinterruptedexcept'
  6232.               'genserverinterface'
  6233.               'genserverstruct'
  6234.               'genshortsequence'
  6235.               'genshortsequencesequence'
  6236.               'genstringsequence'
  6237.               'genunmatchedinputsexception'
  6238.               'genvaluecursorblocksequence'
  6239.               'genvaluecursorblockstruct'
  6240.               'genvaluedefinitionstruct'
  6241.               'genversioninfostruct'
  6242.               'genwstringsequence'
  6243.               'geometry'
  6244.               'geometrycollection'
  6245.               'get_error$'
  6246.               'global_context'
  6247.               'global_name'
  6248.               'gv$_lock'
  6249.               'gv$access'
  6250.               'gv$active_instances'
  6251.               'gv$active_services'
  6252.               'gv$active_sess_pool_mth'
  6253.               'gv$active_session_history'
  6254.               'gv$advisor_progress'
  6255.               'gv$alert_types'
  6256.               'gv$aq'
  6257.               'gv$aq1'
  6258.               'gv$archive'
  6259.               'gv$archive_dest'
  6260.               'gv$archive_dest_status'
  6261.               'gv$archive_gap'
  6262.               'gv$archive_processes'
  6263.               'gv$archived_log'
  6264.               'gv$asm_alias'
  6265.               'gv$asm_client'
  6266.               'gv$asm_disk'
  6267.               'gv$asm_disk_stat'
  6268.               'gv$asm_diskgroup'
  6269.               'gv$asm_diskgroup_stat'
  6270.               'gv$asm_file'
  6271.               'gv$asm_operation'
  6272.               'gv$asm_template'
  6273.               'gv$aw_aggregate_op'
  6274.               'gv$aw_allocate_op'
  6275.               'gv$aw_calc'
  6276.               'gv$aw_longops'
  6277.               'gv$aw_olap'
  6278.               'gv$aw_session_info'
  6279.               'gv$backup'
  6280.               'gv$backup_async_io'
  6281.               'gv$backup_corruption'
  6282.               'gv$backup_datafile'
  6283.               'gv$backup_device'
  6284.               'gv$backup_piece'
  6285.               'gv$backup_redolog'
  6286.               'gv$backup_set'
  6287.               'gv$backup_spfile'
  6288.               'gv$backup_sync_io'
  6289.               'gv$bgprocess'
  6290.               'gv$bh'
  6291.               'gv$blocking_quiesce'
  6292.               'gv$bsp'
  6293.               'gv$buffer_pool'
  6294.               'gv$buffer_pool_statistics'
  6295.               'gv$buffered_publishers'
  6296.               'gv$buffered_queues'
  6297.               'gv$buffered_subscribers'
  6298.               'gv$circuit'
  6299.               'gv$class_cache_transfer'
  6300.               'gv$class_ping'
  6301.               'gv$client_stats'
  6302.               'gv$cluster_interconnects'
  6303.               'gv$configured_interconnects'
  6304.               'gv$context'
  6305.               'gv$controlfile'
  6306.               'gv$controlfile_record_section'
  6307.               'gv$copy_corruption'
  6308.               'gv$cr_block_server'
  6309.               'gv$current_block_server'
  6310.               'gv$database'
  6311.               'gv$database_block_corruption'
  6312.               'gv$database_incarnation'
  6313.               'gv$datafile'
  6314.               'gv$datafile_copy'
  6315.               'gv$datafile_header'
  6316.               'gv$dataguard_config'
  6317.               'gv$dataguard_status'
  6318.               'gv$datapump_job'
  6319.               'gv$datapump_session'
  6320.               'gv$db_cache_advice'
  6321.               'gv$db_object_cache'
  6322.               'gv$db_pipes'
  6323.               'gv$db_transportable_platform'
  6324.               'gv$dbfile'
  6325.               'gv$dblink'
  6326.               'gv$deleted_object'
  6327.               'gv$dispatcher'
  6328.               'gv$dispatcher_config'
  6329.               'gv$dispatcher_rate'
  6330.               'gv$dlm_all_locks'
  6331.               'gv$dlm_convert_local'
  6332.               'gv$dlm_convert_remote'
  6333.               'gv$dlm_latch'
  6334.               'gv$dlm_locks'
  6335.               'gv$dlm_misc'
  6336.               'gv$dlm_ress'
  6337.               'gv$dlm_traffic_controller'
  6338.               'gv$enabledprivs'
  6339.               'gv$enqueue_lock'
  6340.               'gv$enqueue_stat'
  6341.               'gv$enqueue_statistics'
  6342.               'gv$event_histogram'
  6343.               'gv$event_name'
  6344.               'gv$eventmetric'
  6345.               'gv$execution'
  6346.               'gv$fast_start_servers'
  6347.               'gv$fast_start_transactions'
  6348.               'gv$file_cache_transfer'
  6349.               'gv$file_histogram'
  6350.               'gv$file_ping'
  6351.               'gv$filemetric'
  6352.               'gv$filemetric_history'
  6353.               'gv$filespace_usage'
  6354.               'gv$filestat'
  6355.               'gv$fixed_table'
  6356.               'gv$fixed_view_definition'
  6357.               'gv$flashback_database_log'
  6358.               'gv$flashback_database_logfile'
  6359.               'gv$flashback_database_stat'
  6360.               'gv$gc_element'
  6361.               'gv$gc_elements_with_collisions'
  6362.               'gv$gcshvmaster_info'
  6363.               'gv$gcspfmaster_info'
  6364.               'gv$ges_blocking_enqueue'
  6365.               'gv$ges_enqueue'
  6366.               'gv$global_blocked_locks'
  6367.               'gv$global_transaction'
  6368.               'gv$globalcontext'
  6369.               'gv$hs_agent'
  6370.               'gv$hs_parameter'
  6371.               'gv$hs_session'
  6372.               'gv$hvmaster_info'
  6373.               'gv$indexed_fixed_column'
  6374.               'gv$instance'
  6375.               'gv$instance_cache_transfer'
  6376.               'gv$instance_log_group'
  6377.               'gv$instance_recovery'
  6378.               'gv$java_library_cache_memory'
  6379.               'gv$java_pool_advice'
  6380.               'gv$javapool'
  6381.               'gv$latch'
  6382.               'gv$latch_children'
  6383.               'gv$latch_misses'
  6384.               'gv$latch_parent'
  6385.               'gv$latchholder'
  6386.               'gv$latchname'
  6387.               'gv$library_cache_memory'
  6388.               'gv$librarycache'
  6389.               'gv$license'
  6390.               'gv$loadistat'
  6391.               'gv$loadpstat'
  6392.               'gv$lock'
  6393.               'gv$lock_activity'
  6394.               'gv$lock_element'
  6395.               'gv$lock_type'
  6396.               'gv$locked_object'
  6397.               'gv$locks_with_collisions'
  6398.               'gv$log'
  6399.               'gv$log_history'
  6400.               'gv$logfile'
  6401.               'gv$loghist'
  6402.               'gv$logmnr_callback'
  6403.               'gv$logmnr_contents'
  6404.               'gv$logmnr_dictionary'
  6405.               'gv$logmnr_dictionary_load'
  6406.               'gv$logmnr_latch'
  6407.               'gv$logmnr_logfile'
  6408.               'gv$logmnr_logs'
  6409.               'gv$logmnr_parameters'
  6410.               'gv$logmnr_process'
  6411.               'gv$logmnr_region'
  6412.               'gv$logmnr_session'
  6413.               'gv$logmnr_stats'
  6414.               'gv$logmnr_transaction'
  6415.               'gv$logstdby'
  6416.               'gv$logstdby_process'
  6417.               'gv$logstdby_progress'
  6418.               'gv$logstdby_state'
  6419.               'gv$logstdby_stats'
  6420.               'gv$logstdby_transaction'
  6421.               'gv$managed_standby'
  6422.               'gv$map_comp_list'
  6423.               'gv$map_element'
  6424.               'gv$map_ext_element'
  6425.               'gv$map_file'
  6426.               'gv$map_file_extent'
  6427.               'gv$map_file_io_stack'
  6428.               'gv$map_library'
  6429.               'gv$map_subelement'
  6430.               'gv$max_active_sess_target_mth'
  6431.               'gv$metric'
  6432.               'gv$metric_history'
  6433.               'gv$metricgroup'
  6434.               'gv$metricname'
  6435.               'gv$mttr_target_advice'
  6436.               'gv$mutex_sleep'
  6437.               'gv$mutex_sleep_history'
  6438.               'gv$mvrefresh'
  6439.               'gv$mystat'
  6440.               'gv$nls_parameters'
  6441.               'gv$nls_valid_values'
  6442.               'gv$object_dependency'
  6443.               'gv$obsolete_parameter'
  6444.               'gv$offline_range'
  6445.               'gv$open_cursor'
  6446.               'gv$option'
  6447.               'gv$osstat'
  6448.               'gv$parallel_degree_limit_mth'
  6449.               'gv$parameter'
  6450.               'gv$parameter_valid_values'
  6451.               'gv$parameter2'
  6452.               'gv$pga_target_advice'
  6453.               'gv$pga_target_advice_histogram'
  6454.               'gv$pgastat'
  6455.               'gv$pq_sesstat'
  6456.               'gv$pq_slave'
  6457.               'gv$pq_sysstat'
  6458.               'gv$pq_tqstat'
  6459.               'gv$process'
  6460.               'gv$process_memory'
  6461.               'gv$process_memory_detail'
  6462.               'gv$process_memory_detail_prog'
  6463.               'gv$propagation_receiver'
  6464.               'gv$propagation_sender'
  6465.               'gv$proxy_archivedlog'
  6466.               'gv$proxy_datafile'
  6467.               'gv$pwfile_users'
  6468.               'gv$px_buffer_advice'
  6469.               'gv$px_process'
  6470.               'gv$px_process_sysstat'
  6471.               'gv$px_session'
  6472.               'gv$px_sesstat'
  6473.               'gv$queue'
  6474.               'gv$queueing_mth'
  6475.               'gv$recover_file'
  6476.               'gv$recovery_file_status'
  6477.               'gv$recovery_log'
  6478.               'gv$recovery_progress'
  6479.               'gv$recovery_status'
  6480.               'gv$replprop'
  6481.               'gv$replqueue'
  6482.               'gv$reqdist'
  6483.               'gv$reserved_words'
  6484.               'gv$resource'
  6485.               'gv$resource_limit'
  6486.               'gv$restore_point'
  6487.               'gv$resumable'
  6488.               'gv$rfs_thread'
  6489.               'gv$rman_configuration'
  6490.               'gv$rman_output'
  6491.               'gv$rollstat'
  6492.               'gv$rowcache'
  6493.               'gv$rowcache_parent'
  6494.               'gv$rowcache_subordinate'
  6495.               'gv$rsrc_cons_group_history'
  6496.               'gv$rsrc_consumer_group'
  6497.               'gv$rsrc_consumer_group_cpu_mth'
  6498.               'gv$rsrc_plan'
  6499.               'gv$rsrc_plan_cpu_mth'
  6500.               'gv$rsrc_plan_history'
  6501.               'gv$rsrc_session_info'
  6502.               'gv$rule'
  6503.               'gv$rule_set'
  6504.               'gv$rule_set_aggregate_stats'
  6505.               'gv$scheduler_running_jobs'
  6506.               'gv$segment_statistics'
  6507.               'gv$segstat'
  6508.               'gv$segstat_name'
  6509.               'gv$serv_mod_act_stats'
  6510.               'gv$service_event'
  6511.               'gv$service_stats'
  6512.               'gv$service_wait_class'
  6513.               'gv$servicemetric'
  6514.               'gv$servicemetric_history'
  6515.               'gv$services'
  6516.               'gv$ses_optimizer_env'
  6517.               'gv$sess_io'
  6518.               'gv$sess_time_model'
  6519.               'gv$session'
  6520.               'gv$session_connect_info'
  6521.               'gv$session_cursor_cache'
  6522.               'gv$session_event'
  6523.               'gv$session_fix_control'
  6524.               'gv$session_longops'
  6525.               'gv$session_object_cache'
  6526.               'gv$session_wait'
  6527.               'gv$session_wait_class'
  6528.               'gv$session_wait_history'
  6529.               'gv$sessmetric'
  6530.               'gv$sesstat'
  6531.               'gv$sga'
  6532.               'gv$sga_current_resize_ops'
  6533.               'gv$sga_dynamic_components'
  6534.               'gv$sga_dynamic_free_memory'
  6535.               'gv$sga_resize_ops'
  6536.               'gv$sga_target_advice'
  6537.               'gv$sgainfo'
  6538.               'gv$sgastat'
  6539.               'gv$shared_pool_advice'
  6540.               'gv$shared_pool_reserved'
  6541.               'gv$shared_server'
  6542.               'gv$shared_server_monitor'
  6543.               'gv$sort_segment'
  6544.               'gv$sort_usage'
  6545.               'gv$spparameter'
  6546.               'gv$sql'
  6547.               'gv$sql_bind_capture'
  6548.               'gv$sql_bind_data'
  6549.               'gv$sql_bind_metadata'
  6550.               'gv$sql_cursor'
  6551.               'gv$sql_join_filter'
  6552.               'gv$sql_optimizer_env'
  6553.               'gv$sql_plan'
  6554.               'gv$sql_plan_statistics'
  6555.               'gv$sql_plan_statistics_all'
  6556.               'gv$sql_redirection'
  6557.               'gv$sql_shared_cursor'
  6558.               'gv$sql_shared_memory'
  6559.               'gv$sql_workarea'
  6560.               'gv$sql_workarea_active'
  6561.               'gv$sql_workarea_histogram'
  6562.               'gv$sqlarea'
  6563.               'gv$sqlarea_plan_hash'
  6564.               'gv$sqlstats'
  6565.               'gv$sqltext'
  6566.               'gv$sqltext_with_newlines'
  6567.               'gv$standby_apply_snapshot'
  6568.               'gv$standby_log'
  6569.               'gv$statistics_level'
  6570.               'gv$statname'
  6571.               'gv$streams_apply_coordinator'
  6572.               'gv$streams_apply_reader'
  6573.               'gv$streams_apply_server'
  6574.               'gv$streams_capture'
  6575.               'gv$streams_pool_advice'
  6576.               'gv$streams_transaction'
  6577.               'gv$subcache'
  6578.               'gv$sys_optimizer_env'
  6579.               'gv$sys_time_model'
  6580.               'gv$sysaux_occupants'
  6581.               'gv$sysmetric'
  6582.               'gv$sysmetric_history'
  6583.               'gv$sysmetric_summary'
  6584.               'gv$sysstat'
  6585.               'gv$system_cursor_cache'
  6586.               'gv$system_event'
  6587.               'gv$system_fix_control'
  6588.               'gv$system_parameter'
  6589.               'gv$system_parameter2'
  6590.               'gv$system_wait_class'
  6591.               'gv$tablespace'
  6592.               'gv$temp_cache_transfer'
  6593.               'gv$temp_extent_map'
  6594.               'gv$temp_extent_pool'
  6595.               'gv$temp_histogram'
  6596.               'gv$temp_ping'
  6597.               'gv$temp_space_header'
  6598.               'gv$tempfile'
  6599.               'gv$temporary_lobs'
  6600.               'gv$tempseg_usage'
  6601.               'gv$tempstat'
  6602.               'gv$thread'
  6603.               'gv$threshold_types'
  6604.               'gv$timer'
  6605.               'gv$timezone_file'
  6606.               'gv$timezone_names'
  6607.               'gv$transaction'
  6608.               'gv$transaction_enqueue'
  6609.               'gv$transportable_platform'
  6610.               'gv$tsm_sessions'
  6611.               'gv$type_size'
  6612.               'gv$undostat'
  6613.               'gv$version'
  6614.               'gv$vpd_policy'
  6615.               'gv$waitclassmetric'
  6616.               'gv$waitclassmetric_history'
  6617.               'gv$waitstat'
  6618.               'gv$wallet'
  6619.               'gv$xml_audit_trail'
  6620.               'gv_ksmhp'
  6621.               'gv_olapi_iface_object_history'
  6622.               'gv_olapi_iface_op_history'
  6623.               'gv_olapi_memory_op_history'
  6624.               'gv_olapi_session_history'
  6625.               'her_seq'
  6626.               'herausgeber'
  6627.               'herausgeber_seq'
  6628.               'hr'
  6629.               'hs_all_caps'
  6630.               'hs_all_dd'
  6631.               'hs_all_inits'
  6632.               'hs_base_caps'
  6633.               'hs_base_dd'
  6634.               'hs_class_caps'
  6635.               'hs_class_dd'
  6636.               'hs_class_init'
  6637.               'hs_fds_class'
  6638.               'hs_fds_class_date'
  6639.               'hs_fds_inst'
  6640.               'hs_inst_caps'
  6641.               'hs_inst_dd'
  6642.               'hs_inst_init'
  6643.               'htf'
  6644.               'htmldb_system'
  6645.               'htp'
  6646.               'httpuritype'
  6647.               'ind'
  6648.               'index_histogram'
  6649.               'index_stats'
  6650.               'int_ifm_ars_all_mqtab'
  6651.               'interruptableinterface'
  6652.               'item282_t'
  6653.               'item283_coll'
  6654.               'ix'
  6655.               'java_xa'
  6656.               'javasnm'
  6657.               'ku$_auddef_t'
  6658.               'ku$_audit_default_list_t'
  6659.               'ku$_audit_list_t'
  6660.               'ku$_audobj_t'
  6661.               'ku$_chunk_list_t'
  6662.               'ku$_chunk_t'
  6663.               'ku$_ddl'
  6664.               'ku$_ddls'
  6665.               'ku$_dumpfile'
  6666.               'ku$_dumpfile_info'
  6667.               'ku$_dumpfile_item'
  6668.               'ku$_dumpfile1010'
  6669.               'ku$_dumpfile1020'
  6670.               'ku$_dumpfileset'
  6671.               'ku$_dumpfileset1010'
  6672.               'ku$_dumpfileset1020'
  6673.               'ku$_errorline'
  6674.               'ku$_errorlines'
  6675.               'ku$_java_t'
  6676.               'ku$_jobdesc'
  6677.               'ku$_jobdesc1010'
  6678.               'ku$_jobdesc1020'
  6679.               'ku$_jobstatus'
  6680.               'ku$_jobstatus1010'
  6681.               'ku$_jobstatus1020'
  6682.               'ku$_logentry'
  6683.               'ku$_logentry1010'
  6684.               'ku$_logentry1020'
  6685.               'ku$_logline'
  6686.               'ku$_logline1010'
  6687.               'ku$_logline1020'
  6688.               'ku$_multi_ddl'
  6689.               'ku$_multi_ddls'
  6690.               'ku$_objnumpair'
  6691.               'ku$_objnumpairlist'
  6692.               'ku$_objnumset'
  6693.               'ku$_paramvalue'
  6694.               'ku$_paramvalue1010'
  6695.               'ku$_paramvalue1020'
  6696.               'ku$_paramvalues'
  6697.               'ku$_paramvalues1010'
  6698.               'ku$_paramvalues1020'
  6699.               'ku$_parsed_item'
  6700.               'ku$_parsed_items'
  6701.               'ku$_procobj_line'
  6702.               'ku$_procobj_lines'
  6703.               'ku$_procobj_loc'
  6704.               'ku$_procobj_locs'
  6705.               'ku$_source_list_t'
  6706.               'ku$_source_t'
  6707.               'ku$_status'
  6708.               'ku$_status1010'
  6709.               'ku$_status1020'
  6710.               'ku$_submitresult'
  6711.               'ku$_submitresults'
  6712.               'ku$_taction_list_t'
  6713.               'ku$_taction_t'
  6714.               'ku$_vcnt'
  6715.               'ku$_workerstatus'
  6716.               'ku$_workerstatus1010'
  6717.               'ku$_workerstatus1020'
  6718.               'ku$_workerstatuslist'
  6719.               'ku$_workerstatuslist1010'
  6720.               'ku$_workerstatuslist1020'
  6721.               'kupcc'
  6722.               'leser'
  6723.               'leser_seq'
  6724.               'linestring'
  6725.               'loader_col_flags'
  6726.               'loader_col_info'
  6727.               'loader_col_type'
  6728.               'loader_constraint_info'
  6729.               'loader_dir_objs'
  6730.               'loader_file_ts'
  6731.               'loader_full_attr_name'
  6732.               'loader_intcol_info'
  6733.               'loader_lob_flags'
  6734.               'loader_nested_varrays'
  6735.               'loader_oid_info'
  6736.               'loader_param_info'
  6737.               'loader_part_info'
  6738.               'loader_ref_info'
  6739.               'loader_skip_unusable_indexes'
  6740.               'loader_tab_info'
  6741.               'loader_trigger_info'
  6742.               'map_object'
  6743.               'md'
  6744.               'md_lrs'
  6745.               'mddata'
  6746.               'mdmclassconstants'
  6747.               'mdmobjectidconstants'
  6748.               'mdmpropertyidconstants'
  6749.               'mdsys'
  6750.               'metadataproviderinterface'
  6751.               'mgmt$alert_current'
  6752.               'mgmt$alert_history'
  6753.               'mgmt$availability_current'
  6754.               'mgmt$availability_history'
  6755.               'mgmt$blackout_history'
  6756.               'mgmt$cluster_interconnects'
  6757.               'mgmt$csa_clients'
  6758.               'mgmt$csa_host_cookies'
  6759.               'mgmt$csa_host_cpus'
  6760.               'mgmt$csa_host_custom'
  6761.               'mgmt$csa_host_iocards'
  6762.               'mgmt$csa_host_nics'
  6763.               'mgmt$csa_host_os_components'
  6764.               'mgmt$csa_host_os_filesystems'
  6765.               'mgmt$csa_host_os_properties'
  6766.               'mgmt$csa_host_sw'
  6767.               'mgmt$db_controlfiles'
  6768.               'mgmt$db_datafiles'
  6769.               'mgmt$db_dbninstanceinfo'
  6770.               'mgmt$db_featureusage'
  6771.               'mgmt$db_init_params'
  6772.               'mgmt$db_license'
  6773.               'mgmt$db_redologs'
  6774.               'mgmt$db_rollback_segs'
  6775.               'mgmt$db_sga'
  6776.               'mgmt$db_tablespaces'
  6777.               'mgmt$delta_component_details'
  6778.               'mgmt$delta_components'
  6779.               'mgmt$delta_fs_mount'
  6780.               'mgmt$delta_hardware'
  6781.               'mgmt$delta_host_config'
  6782.               'mgmt$delta_init'
  6783.               'mgmt$delta_oneoff_patches'
  6784.               'mgmt$delta_oracle_home'
  6785.               'mgmt$delta_os_comp_details'
  6786.               'mgmt$delta_os_components'
  6787.               'mgmt$delta_os_kernel_params'
  6788.               'mgmt$delta_patchset_details'
  6789.               'mgmt$delta_patchsets'
  6790.               'mgmt$delta_tablespaces'
  6791.               'mgmt$delta_vendor_sw'
  6792.               'mgmt$delta_view'
  6793.               'mgmt$delta_view_details'
  6794.               'mgmt$ecm_current_snapshots'
  6795.               'mgmt$ecm_visible_snapshots'
  6796.               'mgmt$group_derived_memberships'
  6797.               'mgmt$group_flat_memberships'
  6798.               'mgmt$group_members'
  6799.               'mgmt$ha_backup'
  6800.               'mgmt$ha_files'
  6801.               'mgmt$ha_info'
  6802.               'mgmt$ha_init_params'
  6803.               'mgmt$ha_mttr'
  6804.               'mgmt$ha_rman_config'
  6805.               'mgmt$hw_nic'
  6806.               'mgmt$interface_stats'
  6807.               'mgmt$metric_collection'
  6808.               'mgmt$metric_current'
  6809.               'mgmt$metric_daily'
  6810.               'mgmt$metric_details'
  6811.               'mgmt$metric_hourly'
  6812.               'mgmt$missing_targets'
  6813.               'mgmt$missing_targets_in_groups'
  6814.               'mgmt$os_components'
  6815.               'mgmt$os_fs_mount'
  6816.               'mgmt$os_hw_summary'
  6817.               'mgmt$os_kernel_params'
  6818.               'mgmt$os_patches'
  6819.               'mgmt$os_summary'
  6820.               'mgmt$racdb_interconnects'
  6821.               'mgmt$software_comp_patchset'
  6822.               'mgmt$software_component_oneoff'
  6823.               'mgmt$software_components'
  6824.               'mgmt$software_dependencies'
  6825.               'mgmt$software_homes'
  6826.               'mgmt$software_oneoff_patches'
  6827.               'mgmt$software_others'
  6828.               'mgmt$software_patches_in_homes'
  6829.               'mgmt$software_patchsets'
  6830.               'mgmt$target'
  6831.               'mgmt$target_components'
  6832.               'mgmt$target_composite'
  6833.               'mgmt$target_properties'
  6834.               'mgmt$target_type'
  6835.               'mgmt_target_blackouts'
  6836.               'mgmt_view'
  6837.               'mrv_olap_cwm1_aggop'
  6838.               'mrv_olap_cwm1_aggord'
  6839.               'mrv_olap1_facttblfctmaps'
  6840.               'mrv_olap1_facttblkeymaps'
  6841.               'mrv_olap1_pop_cubes'
  6842.               'mrv_olap1_pop_dimensions'
  6843.               'mrv_olap2_aggregation_uses'
  6844.               'mrv_olap2_aw_attributes'
  6845.               'mrv_olap2_aw_cube_agg_lvl'
  6846.               'mrv_olap2_aw_cube_agg_meas'
  6847.               'mrv_olap2_aw_cube_agg_op'
  6848.               'mrv_olap2_aw_cube_agg_specs'
  6849.               'mrv_olap2_aw_cube_dim_uses'
  6850.               'mrv_olap2_aw_cube_measures'
  6851.               'mrv_olap2_aw_cubes'
  6852.               'mrv_olap2_aw_dim_hier_lvl_ord'
  6853.               'mrv_olap2_aw_dim_levels'
  6854.               'mrv_olap2_aw_dimensions'
  6855.               'mrv_olap2_aw_map_attr_use'
  6856.               'mrv_olap2_aw_map_dim_use'
  6857.               'mrv_olap2_aw_map_meas_use'
  6858.               'mrv_olap2_aw_phys_obj'
  6859.               'mrv_olap2_aw_phys_obj_prop'
  6860.               'mrv_olap2_aws'
  6861.               'mrv_olap2_awviewcols'
  6862.               'mrv_olap2_awviews'
  6863.               'mrv_olap2_catalog_entity_uses'
  6864.               'mrv_olap2_catalogs'
  6865.               'mrv_olap2_cube_measures'
  6866.               'mrv_olap2_descriptors'
  6867.               'mrv_olap2_dim_attributes'
  6868.               'mrv_olap2_dim_hier_level_uses'
  6869.               'mrv_olap2_dim_hiers'
  6870.               'mrv_olap2_dim_level_attr_maps'
  6871.               'mrv_olap2_entity_desc_uses'
  6872.               'mrv_olap2_entity_ext_parms'
  6873.               'mrv_olap2_entity_parameters'
  6874.               'mrv_olap2_facttblfctmaps'
  6875.               'mrv_olap2_facttblkeymaps'
  6876.               'mrv_olap2_hier_custom_sort'
  6877.               'mrv_olap2_hierdim_keycol_map'
  6878.               'mrv_olap2_hierdims'
  6879.               'mrv_olap2_hierdims_cc'
  6880.               'mrv_olap2_join_key_col_uses'
  6881.               'mrv_olap2_listdims'
  6882.               'mrv_olap2_listdims_cc'
  6883.               'mrv_olap2_pop_cubes'
  6884.               'mrv_olap2_pop_dimensions'
  6885.               'multicurve'
  6886.               'multilinestring'
  6887.               'multipoint'
  6888.               'multipolygon'
  6889.               'multisurface'
  6890.               'my_sdo_index_metadata'
  6891.               'nls_database_parameters'
  6892.               'nls_instance_parameters'
  6893.               'nls_session_parameters'
  6894.               'o_data_aq_container'
  6895.               'o_data_aq_replication'
  6896.               'o_int_ifm_ars_container'
  6897.               'o_int_ifm_ars_create_ta_ticket'
  6898.               'o_int_ifm_ars_modify_ta_ticket'
  6899.               'o_int_ifm_ars_register_cr_tckt'
  6900.               'o_int_ifm_ars_register_ta_tckt'
  6901.               'o_int_ping_pong'
  6902.               'o_syst_protocol'
  6903.               'obj'
  6904.               'obj_odac_dept'
  6905.               'odac_array'
  6906.               'odac_bfile'
  6907.               'odac_blob'
  6908.               'odac_blob_insert'
  6909.               'odac_clob'
  6910.               'odac_emp'
  6911.               'odac_loaded'
  6912.               'odac_long'
  6913.               'odac_long_char'
  6914.               'odac_nestedtable'
  6915.               'odac_pictures'
  6916.               'odac_ref'
  6917.               'odacpack'
  6918.               'odciconst'
  6919.               'odm_abn_model'
  6920.               'odm_association_rule_model'
  6921.               'odm_attribute_importance_model'
  6922.               'odm_clustering_util'
  6923.               'odm_model_util'
  6924.               'odm_naive_bayes_model'
  6925.               'odm_oc_clustering_model'
  6926.               'odm_util'
  6927.               'oe'
  6928.               'ogis_geometry_columns'
  6929.               'ogis_spatial_reference_systems'
  6930.               'ol$'
  6931.               'ol$hints'
  6932.               'ol$nodes'
  6933.               'olap_api_session_init'
  6934.               'olap_oledb_actions'
  6935.               'olap_oledb_cubes'
  6936.               'olap_oledb_dimensions'
  6937.               'olap_oledb_functions'
  6938.               'olap_oledb_hierarchies'
  6939.               'olap_oledb_keywords'
  6940.               'olap_oledb_levels'
  6941.               'olap_oledb_mdproperties'
  6942.               'olap_oledb_mdprops'
  6943.               'olap_oledb_mdpropvals'
  6944.               'olap_oledb_measdims_pvt'
  6945.               'olap_oledb_measures'
  6946.               'olap_oledb_properties'
  6947.               'olap_oledb_sets'
  6948.               'olap_srf_t'
  6949.               'olap_sys_aw_access_cube_view'
  6950.               'olap_sys_aw_access_dim_view'
  6951.               'olap_sys_aw_enable_access_view'
  6952.               'olapdimview'
  6953.               'olapfactview'
  6954.               'olapi_history'
  6955.               'olapi_history_seq'
  6956.               'olapi_iface_object_history'
  6957.               'olapi_iface_op_history'
  6958.               'olapi_mdx_rowset_impl_t'
  6959.               'olapi_memory_heap_history'
  6960.               'olapi_memory_op_history'
  6961.               'olapi_session_history'
  6962.               'olapihandshake2'
  6963.               'olapsys'
  6964.               'ora_dm_tree_nodes'
  6965.               'ora_kglr7_db_links'
  6966.               'ora_kglr7_dependencies'
  6967.               'ora_kglr7_idl_char'
  6968.               'ora_kglr7_idl_sb4'
  6969.               'ora_kglr7_idl_ub1'
  6970.               'ora_kglr7_idl_ub2'
  6971.               'ora_mining_number_nt'
  6972.               'ora_mining_varchar2_nt'
  6973.               'ordaudio'
  6974.               'orddoc'
  6975.               'ordimage'
  6976.               'ordimagesignature'
  6977.               'ordplugins'
  6978.               'ordsys'
  6979.               'ordvideo'
  6980.               'outline'
  6981.               'outln'
  6982.               'outln_pkg'
  6983.               'owa'
  6984.               'owa_cache'
  6985.               'owa_cookie'
  6986.               'owa_custom'
  6987.               'owa_global'
  6988.               'owa_image'
  6989.               'owa_init'
  6990.               'owa_match'
  6991.               'owa_opt_lock'
  6992.               'owa_pattern'
  6993.               'owa_sec'
  6994.               'owa_text'
  6995.               'owa_util'
  6996.               'parameteridconstants'
  6997.               'pas_projekt'
  6998.               'pasadm'
  6999.               'path_view'
  7000.               'pbsde'
  7001.               'pers_zuord_vw'
  7002.               'person'
  7003.               'person_seq'
  7004.               'pkg_syst_analyze'
  7005.               'pkg_syst_compile'
  7006.               'pkg_syst_execute'
  7007.               'pkg_syst_file'
  7008.               'pkg_syst_jobs'
  7009.               'pkg_syst_lock'
  7010.               'pkg_syst_mail'
  7011.               'pkg_syst_message'
  7012.               'pkg_syst_move'
  7013.               'pkg_syst_parameter'
  7014.               'pkg_syst_parameter_tools'
  7015.               'pkg_syst_process_state'
  7016.               'pkg_syst_protocol'
  7017.               'pkg_syst_range'
  7018.               'pkg_syst_range_parameter'
  7019.               'pkg_syst_range_user'
  7020.               'pkg_syst_rebuild'
  7021.               'pkg_syst_statement'
  7022.               'pkg_syst_statement_user'
  7023.               'pkg_syst_string_tools'
  7024.               'pkg_syst_timer'
  7025.               'pkg_syst_tools'
  7026.               'pkg_syst_tools_user'
  7027.               'plan_table'
  7028.               'plitblm'
  7029.               'pm'
  7030.               'point'
  7031.               'polygon'
  7032.               'product_component_version'
  7033.               'product_profile'
  7034.               'product_user_profile'
  7035.               'proxy_roles'
  7036.               'proxy_users'
  7037.               'proxy_users_and_roles'
  7038.               'prvt_sam'
  7039.               'public'
  7040.               'public_dependency'
  7041.               'purchaseorder284_tab'
  7042.               'purchaseordertype281_t'
  7043.               'qt_odac_dept'
  7044.               'qt_odac_raw'
  7045.               'queue_privileges'
  7046.               'recyclebin'
  7047.               'repcat_repcolumn_base'
  7048.               'replication_aq_qtab'
  7049.               'resource_cost'
  7050.               'resource_view'
  7051.               'rewritearraytype'
  7052.               'rewritemessage'
  7053.               'rlm$eventids'
  7054.               'rlm$table_alias'
  7055.               'role_role_privs'
  7056.               'role_sys_privs'
  7057.               'role_tab_privs'
  7058.               'role_wm_privs'
  7059.               'schema_export_objects'
  7060.               'scott'
  7061.               'sdo'
  7062.               'sdo_3gl'
  7063.               'sdo_addr_array'
  7064.               'sdo_admin'
  7065.               'sdo_angle_units'
  7066.               'sdo_area_units'
  7067.               'sdo_available_elem_ops'
  7068.               'sdo_available_non_elem_ops'
  7069.               'sdo_available_ops'
  7070.               'sdo_cart_text'
  7071.               'sdo_catalog'
  7072.               'sdo_coord_axes'
  7073.               'sdo_coord_axis_names'
  7074.               'sdo_coord_op_methods'
  7075.               'sdo_coord_op_param_use'
  7076.               'sdo_coord_op_param_vals'
  7077.               'sdo_coord_op_params'
  7078.               'sdo_coord_op_paths'
  7079.               'sdo_coord_ops'
  7080.               'sdo_coord_ref_sys'
  7081.               'sdo_coord_ref_system'
  7082.               'sdo_coord_sys'
  7083.               'sdo_crs_compound'
  7084.               'sdo_crs_engineering'
  7085.               'sdo_crs_geocentric'
  7086.               'sdo_crs_geographic2d'
  7087.               'sdo_crs_geographic3d'
  7088.               'sdo_crs_projected'
  7089.               'sdo_crs_vertical'
  7090.               'sdo_cs'
  7091.               'sdo_datum_engineering'
  7092.               'sdo_datum_geodetic'
  7093.               'sdo_datum_vertical'
  7094.               'sdo_datums'
  7095.               'sdo_datums_old_format'
  7096.               'sdo_datums_old_snapshot'
  7097.               'sdo_dim_array'
  7098.               'sdo_dim_element'
  7099.               'sdo_dist_units'
  7100.               'sdo_edge_array'
  7101.               'sdo_elem_info_array'
  7102.               'sdo_ellipsoids'
  7103.               'sdo_ellipsoids_old_format'
  7104.               'sdo_ellipsoids_old_snapshot'
  7105.               'sdo_gcdr'
  7106.               'sdo_geo_addr'
  7107.               'sdo_geom'
  7108.               'sdo_geometry'
  7109.               'sdo_geor'
  7110.               'sdo_geor_colormap'
  7111.               'sdo_geor_grayscale'
  7112.               'sdo_geor_histogram'
  7113.               'sdo_geor_int'
  7114.               'sdo_geor_metadata'
  7115.               'sdo_geor_srs'
  7116.               'sdo_geor_utl'
  7117.               'sdo_georaster'
  7118.               'sdo_georx'
  7119.               'sdo_index_metadata'
  7120.               'sdo_keywordarray'
  7121.               'sdo_link_t'
  7122.               'sdo_list_type'
  7123.               'sdo_lrs'
  7124.               'sdo_mbr'
  7125.               'sdo_migrate'
  7126.               'sdo_net'
  7127.               'sdo_net_mem'
  7128.               'sdo_network_manager_t'
  7129.               'sdo_network_t'
  7130.               'sdo_node_t'
  7131.               'sdo_number_array'
  7132.               'sdo_ordinate_array'
  7133.               'sdo_path_t'
  7134.               'sdo_point_type'
  7135.               'sdo_preferred_ops_system'
  7136.               'sdo_preferred_ops_user'
  7137.               'sdo_pridx'
  7138.               'sdo_prime_meridians'
  7139.               'sdo_projections_old_format'
  7140.               'sdo_projections_old_snapshot'
  7141.               'sdo_raster'
  7142.               'sdo_rasterset'
  7143.               'sdo_rdf'
  7144.               'sdo_rdf_alias'
  7145.               'sdo_rdf_aliases'
  7146.               'sdo_rdf_inference'
  7147.               'sdo_rdf_internal'
  7148.               'sdo_rdf_models'
  7149.               'sdo_rdf_rulebases'
  7150.               'sdo_rdf_triple'
  7151.               'sdo_rdf_triple_s'
  7152.               'sdo_regaggr'
  7153.               'sdo_regaggrset'
  7154.               'sdo_region'
  7155.               'sdo_regionset'
  7156.               'sdo_relate_mask'
  7157.               'sdo_relatemask_table'
  7158.               'sdo_router_partition'
  7159.               'sdo_rowidpair'
  7160.               'sdo_rowidset'
  7161.               'sdo_rtree_admin'
  7162.               'sdo_sam'
  7163.               'sdo_srid_chain'
  7164.               'sdo_srid_list'
  7165.               'sdo_string_array'
  7166.               'sdo_tfm_chain'
  7167.               'sdo_tgl_object'
  7168.               'sdo_tgl_object_array'
  7169.               'sdo_topo'
  7170.               'sdo_topo_data$'
  7171.               'sdo_topo_geometry'
  7172.               'sdo_topo_geometry_layer'
  7173.               'sdo_topo_geometry_layer_array'
  7174.               'sdo_topo_map'
  7175.               'sdo_topo_nstd_tbl'
  7176.               'sdo_topo_object'
  7177.               'sdo_topo_object_array'
  7178.               'sdo_topo_transact_data$'
  7179.               'sdo_transient_rule'
  7180.               'sdo_transient_rule_set'
  7181.               'sdo_tune'
  7182.               'sdo_txn_idx_deletes'
  7183.               'sdo_txn_idx_exp_upd_rgn'
  7184.               'sdo_txn_idx_inserts'
  7185.               'sdo_units_of_measure'
  7186.               'sdo_util'
  7187.               'sdo_vpoint_type'
  7188.               'sdo_xml_schemas'
  7189.               'sdoaggrtype'
  7190.               'seq'
  7191.               'serverinterface'
  7192.               'session_context'
  7193.               'session_privs'
  7194.               'session_roles'
  7195.               'setemviewusercontext'
  7196.               'sh'
  7197.               'si_appendclrhstgr'
  7198.               'si_averagecolor'
  7199.               'si_chgcontent'
  7200.               'si_color'
  7201.               'si_colorhistogram'
  7202.               'si_convertformat'
  7203.               'si_featurelist'
  7204.               'si_informtn_schema'
  7205.               'si_positionalcolor'
  7206.               'si_setavgclrftr'
  7207.               'si_setclrhstgrftr'
  7208.               'si_setpstnlclrftr'
  7209.               'si_settextureftr'
  7210.               'si_stillimage'
  7211.               'si_texture'
  7212.               'sm$version'
  7213.               'soc_msg_type'
  7214.               'sql_bind'
  7215.               'sql_bind_set'
  7216.               'sql_binds'
  7217.               'sql_objects'
  7218.               'sql_plan_row_type'
  7219.               'sql_plan_stat_row_type'
  7220.               'sql_plan_table_type'
  7221.               'sqlbaseonlydefinitionstruct'
  7222.               'sqlbooleansequence'
  7223.               'sqlcomparisonruleenum'
  7224.               'sqlcompoundcursorblocksequence'
  7225.               'sqlcompoundcursorblockstruct'
  7226.               'sqlconnectionparameterinfoseq'
  7227.               'sqlconnectionparameterinfosequ'
  7228.               'sqlconnectionparameterinfostru'
  7229.               'sqlconnectionparametertypeenum'
  7230.               'sqlconnectionstruct'
  7231.               'sqlconstantlistdefinitionstruc'
  7232.               'sqlconstantlistvaluesunion'
  7233.               'sqlcursorblockstruct'
  7234.               'sqlcursorspecifiersequ'
  7235.               'sqlcursorspecifiersequence'
  7236.               'sqlcursorspecifierstruct'
  7237.               'sqlcursorvaluesunion'
  7238.               'sqlcursorvalueunion'
  7239.               'sqlcursorvalueunionsequence'
  7240.               'sqldatablocksequence'
  7241.               'sqldatablockstruct'
  7242.               'sqldatasequenceunion'
  7243.               'sqldataunion'
  7244.               'sqldataunionsequence'
  7245.               'sqldefinitionsequence'
  7246.               'sqldefinitionunion'
  7247.               'sqldependencyblockseq'
  7248.               'sqldependencyblocksequence'
  7249.               'sqldependencyblocksequenceseq'
  7250.               'sqldependencyblocksequencesequ'
  7251.               'sqldependencyblockstruct'
  7252.               'sqldependencyblockunion'
  7253.               'sqldomainenum'
  7254.               'sqldoublesequence'
  7255.               'sqldynamicdefinitionstruct'
  7256.               'sqlerrorclassenum'
  7257.               'sqlerrordescriptionsequence'
  7258.               'sqlerrordescriptionstruct'
  7259.               'sqlerrortypeenum'
  7260.               'sqlexpressexception'
  7261.               'sqlfloatsequence'
  7262.               'sqlincludeddependencyblockstru'
  7263.               'sqlindexblockstruct'
  7264.               'sqlinvalidindexspecificationex'
  7265.               'sqljoindefinitionstruct'
  7266.               'sqllonglongsequence'
  7267.               'sqllongsequence'
  7268.               'sqlmetadatadefinitionstruct'
  7269.               'sqlmetadatapropertybagseq'
  7270.               'sqlmetadatapropertybagsequence'
  7271.               'sqlmetadatapropertybagunion'
  7272.               'sqlmetadatapropertysequence'
  7273.               'sqlmetadatapropertystruct'
  7274.               'sqlmetadatapropertyvaluesunion'
  7275.               'sqlmultiplierblockstruct'
  7276.               'sqloctetsequence'
  7277.               'sqlolapiexception'
  7278.               'sqlparentstartendblocksequence'
  7279.               'sqlparentstartendblockunion'
  7280.               'sqlpersistentsourceidsequence'
  7281.               'sqlpersistentsourceidstruct'
  7282.               'sqlprof_attr'
  7283.               'sqlpropertysequence'
  7284.               'sqlpropertystruct'
  7285.               'sqlrangedefinitionstruct'
  7286.               'sqlremoteapiversionmismatchexc'
  7287.               'sqlremoteauthenticationexcepti'
  7288.               'sqlremoteobjectclosedexception'
  7289.               'sqlremotespecificationupdatene'
  7290.               'sqlremotetaskinterruptedexcept'
  7291.               'sqlserverstruct'
  7292.               'sqlset'
  7293.               'sqlset_row'
  7294.               'sqlshortsequ'
  7295.               'sqlshortsequence'
  7296.               'sqlstringsequence'
  7297.               'sqlunmatchedinputsexception'
  7298.               'sqlvaluecursorblocksequence'
  7299.               'sqlvaluecursorblockstruct'
  7300.               'sqlvaluedefinitionstruct'
  7301.               'sqlversioninfostruct'
  7302.               'sqlwstringseq'
  7303.               'sqlwstringsequence'
  7304.               'stmt_audit_option_map'
  7305.               'surface'
  7306.               'syn'
  7307.               'sys'
  7308.               'sys_iot_over_53385'
  7309.               'sys_iot_over_53822'
  7310.               'sys_iot_over_54497'
  7311.               'sysman'
  7312.               'syst_dbms_lock_allocation'
  7313.               'syst_message'
  7314.               'syst_param_parameter'
  7315.               'syst_param_value'
  7316.               'syst_process_state'
  7317.               'syst_process_state_detail'
  7318.               'syst_protocol'
  7319.               'syst_rang_range'
  7320.               'syst_rang_value'
  7321.               'syst_statement_object'
  7322.               'syst_statement_statement'
  7323.               'system'
  7324.               'system_privilege_map'
  7325.               'systools'
  7326.               't_syst_date_list'
  7327.               't_syst_number_list'
  7328.               't_syst_protocol'
  7329.               't_syst_string_list'
  7330.               'tab'
  7331.               'table_export_objects'
  7332.               'table_privilege_map'
  7333.               'table_privileges'
  7334.               'tablespace_export_objects'
  7335.               'tabs'
  7336.               'taddress'
  7337.               'temp$lob'
  7338.               'tfm_plan'
  7339.               'threadtable'
  7340.               'tmp_coord_ops'
  7341.               'todacarray1'
  7342.               'todacarray2'
  7343.               'todacarray3'
  7344.               'todacarrtype'
  7345.               'todacarrtype1'
  7346.               'todacnestedsubtype'
  7347.               'todacnestedtable'
  7348.               'todacnestedtype'
  7349.               'tperson'
  7350.               'transportable_export_objects'
  7351.               'trefobjecttype'
  7352.               'trusted_servers'
  7353.               'tsmsys'
  7354.               'ueb_seq'
  7355.               'uebersetzer'
  7356.               'uebersetzer_seq'
  7357.               'urifactory'
  7358.               'uritype'
  7359.               'user_advisor_actions'
  7360.               'user_advisor_directives'
  7361.               'user_advisor_findings'
  7362.               'user_advisor_journal'
  7363.               'user_advisor_log'
  7364.               'user_advisor_objects'
  7365.               'user_advisor_parameters'
  7366.               'user_advisor_rationale'
  7367.               'user_advisor_recommendations'
  7368.               'user_advisor_sqla_rec_sum'
  7369.               'user_advisor_sqla_wk_map'
  7370.               'user_advisor_sqla_wk_stmts'
  7371.               'user_advisor_sqlw_colvol'
  7372.               'user_advisor_sqlw_journal'
  7373.               'user_advisor_sqlw_parameters'
  7374.               'user_advisor_sqlw_stmts'
  7375.               'user_advisor_sqlw_sum'
  7376.               'user_advisor_sqlw_tables'
  7377.               'user_advisor_sqlw_tabvol'
  7378.               'user_advisor_sqlw_templates'
  7379.               'user_advisor_tasks'
  7380.               'user_advisor_templates'
  7381.               'user_all_tables'
  7382.               'user_application_roles'
  7383.               'user_aq_agent_privs'
  7384.               'user_arguments'
  7385.               'user_associations'
  7386.               'user_attribute_transformations'
  7387.               'user_audit_object'
  7388.               'user_audit_policies'
  7389.               'user_audit_policy_columns'
  7390.               'user_audit_session'
  7391.               'user_audit_statement'
  7392.               'user_audit_trail'
  7393.               'user_aw_obj'
  7394.               'user_aw_prop'
  7395.               'user_aw_ps'
  7396.               'user_aws'
  7397.               'user_base_table_mviews'
  7398.               'user_catalog'
  7399.               'user_change_notification_regs'
  7400.               'user_clu_columns'
  7401.               'user_cluster_hash_expressions'
  7402.               'user_clusters'
  7403.               'user_col_comments'
  7404.               'user_col_privs'
  7405.               'user_col_privs_made'
  7406.               'user_col_privs_recd'
  7407.               'user_coll_types'
  7408.               'user_cons_columns'
  7409.               'user_cons_obj_columns'
  7410.               'user_constraints'
  7411.               'user_datapump_jobs'
  7412.               'user_db_links'
  7413.               'user_dependencies'
  7414.               'user_dim_attributes'
  7415.               'user_dim_child_of'
  7416.               'user_dim_hierarchies'
  7417.               'user_dim_join_key'
  7418.               'user_dim_level_key'
  7419.               'user_dim_levels'
  7420.               'user_dimensions'
  7421.               'user_encrypted_columns'
  7422.               'user_epg_dad_authorization'
  7423.               'user_errors'
  7424.               'user_evaluation_context_tables'
  7425.               'user_evaluation_context_vars'
  7426.               'user_evaluation_contexts'
  7427.               'user_expfil_aset_functions'
  7428.               'user_expfil_attribute_sets'
  7429.               'user_expfil_attributes'
  7430.               'user_expfil_def_index_params'
  7431.               'user_expfil_expression_sets'
  7432.               'user_expfil_exprset_stats'
  7433.               'user_expfil_index_params'
  7434.               'user_expfil_indexes'
  7435.               'user_expfil_predtab_attributes'
  7436.               'user_expfil_privileges'
  7437.               'user_extents'
  7438.               'user_external_locations'
  7439.               'user_external_tables'
  7440.               'user_file_group_export_info'
  7441.               'user_file_group_files'
  7442.               'user_file_group_tables'
  7443.               'user_file_group_tablespaces'
  7444.               'user_file_group_versions'
  7445.               'user_file_groups'
  7446.               'user_free_space'
  7447.               'user_geometry_columns'
  7448.               'user_histograms'
  7449.               'user_ind_columns'
  7450.               'user_ind_expressions'
  7451.               'user_ind_partitions'
  7452.               'user_ind_statistics'
  7453.               'user_ind_subpartitions'
  7454.               'user_indexes'
  7455.               'user_indextype_arraytypes'
  7456.               'user_indextype_comments'
  7457.               'user_indextype_operators'
  7458.               'user_indextypes'
  7459.               'user_internal_triggers'
  7460.               'user_java_arguments'
  7461.               'user_java_classes'
  7462.               'user_java_derivations'
  7463.               'user_java_fields'
  7464.               'user_java_implements'
  7465.               'user_java_inners'
  7466.               'user_java_layouts'
  7467.               'user_java_methods'
  7468.               'user_java_ncomps'
  7469.               'user_java_policy'
  7470.               'user_java_resolvers'
  7471.               'user_java_throws'
  7472.               'user_jobs'
  7473.               'user_join_ind_columns'
  7474.               'user_libraries'
  7475.               'user_lob_partitions'
  7476.               'user_lob_subpartitions'
  7477.               'user_lob_templates'
  7478.               'user_lobs'
  7479.               'user_log_group_columns'
  7480.               'user_log_groups'
  7481.               'user_method_params'
  7482.               'user_method_results'
  7483.               'user_mp_graph_workspaces'
  7484.               'user_mp_parent_workspaces'
  7485.               'user_mview_aggregates'
  7486.               'user_mview_analysis'
  7487.               'user_mview_comments'
  7488.               'user_mview_detail_relations'
  7489.               'user_mview_joins'
  7490.               'user_mview_keys'
  7491.               'user_mview_logs'
  7492.               'user_mview_refresh_times'
  7493.               'user_mviews'
  7494.               'user_nested_table_cols'
  7495.               'user_nested_tables'
  7496.               'user_obj_audit_opts'
  7497.               'user_obj_colattrs'
  7498.               'user_object_size'
  7499.               'user_object_tables'
  7500.               'user_objects'
  7501.               'user_opancillary'
  7502.               'user_oparguments'
  7503.               'user_opbindings'
  7504.               'user_operator_comments'
  7505.               'user_operators'
  7506.               'user_outline_hints'
  7507.               'user_outlines'
  7508.               'user_part_col_statistics'
  7509.               'user_part_histograms'
  7510.               'user_part_indexes'
  7511.               'user_part_key_columns'
  7512.               'user_part_lobs'
  7513.               'user_part_tables'
  7514.               'user_partial_drop_tabs'
  7515.               'user_password_limits'
  7516.               'user_pending_conv_tables'
  7517.               'user_plsql_object_settings'
  7518.               'user_policies'
  7519.               'user_policy_contexts'
  7520.               'user_policy_groups'
  7521.               'user_procedures'
  7522.               'user_proxies'
  7523.               'user_published_columns'
  7524.               'user_queue_publishers'
  7525.               'user_queue_schedules'
  7526.               'user_queue_subscribers'
  7527.               'user_queue_tables'
  7528.               'user_queues'
  7529.               'user_recyclebin'
  7530.               'user_refresh'
  7531.               'user_refresh_children'
  7532.               'user_refs'
  7533.               'user_registered_mviews'
  7534.               'user_registered_snapshots'
  7535.               'user_registry'
  7536.               'user_repaudit_attribute'
  7537.               'user_repaudit_column'
  7538.               'user_repcat'
  7539.               'user_repcat_refresh_templates'
  7540.               'user_repcat_template_objects'
  7541.               'user_repcat_template_parms'
  7542.               'user_repcat_template_sites'
  7543.               'user_repcat_user_authorization'
  7544.               'user_repcat_user_parm_values'
  7545.               'user_repcatlog'
  7546.               'user_repcolumn'
  7547.               'user_repcolumn_group'
  7548.               'user_repconflict'
  7549.               'user_repddl'
  7550.               'user_repflavor_columns'
  7551.               'user_repflavor_objects'
  7552.               'user_repflavors'
  7553.               'user_repgenerated'
  7554.               'user_repgenobjects'
  7555.               'user_repgroup'
  7556.               'user_repgroup_privileges'
  7557.               'user_repgrouped_column'
  7558.               'user_repkey_columns'
  7559.               'user_repobject'
  7560.               'user_repparameter_column'
  7561.               'user_reppriority'
  7562.               'user_reppriority_group'
  7563.               'user_repprop'
  7564.               'user_represol_stats_control'
  7565.               'user_represolution'
  7566.               'user_represolution_method'
  7567.               'user_represolution_statistics'
  7568.               'user_repschema'
  7569.               'user_repsites'
  7570.               'user_resource_limits'
  7571.               'user_resumable'
  7572.               'user_rewrite_equivalences'
  7573.               'user_rlm4j_event_structs'
  7574.               'user_rlm4j_rule_classes'
  7575.               'user_rlmgr_comprcls_properties'
  7576.               'user_rlmgr_event_structs'
  7577.               'user_rlmgr_privileges'
  7578.               'user_rlmgr_rule_class_status'
  7579.               'user_rlmgr_rule_classes'
  7580.               'user_role_privs'
  7581.               'user_rsrc_consumer_group_privs'
  7582.               'user_rsrc_manager_system_privs'
  7583.               'user_rule_set_rules'
  7584.               'user_rule_sets'
  7585.               'user_rules'
  7586.               'user_rulesets'
  7587.               'user_scheduler_chain_rules'
  7588.               'user_scheduler_chain_steps'
  7589.               'user_scheduler_chains'
  7590.               'user_scheduler_job_args'
  7591.               'user_scheduler_job_log'
  7592.               'user_scheduler_job_run_details'
  7593.               'user_scheduler_jobs'
  7594.               'user_scheduler_program_args'
  7595.               'user_scheduler_programs'
  7596.               'user_scheduler_running_chains'
  7597.               'user_scheduler_running_jobs'
  7598.               'user_scheduler_schedules'
  7599.               'user_sdo_geom_metadata'
  7600.               'user_sdo_geor_sysdata'
  7601.               'user_sdo_index_info'
  7602.               'user_sdo_index_metadata'
  7603.               'user_sdo_lrs_metadata'
  7604.               'user_sdo_maps'
  7605.               'user_sdo_network_constraints'
  7606.               'user_sdo_network_metadata'
  7607.               'user_sdo_network_user_data'
  7608.               'user_sdo_styles'
  7609.               'user_sdo_themes'
  7610.               'user_sdo_topo_info'
  7611.               'user_sdo_topo_metadata'
  7612.               'user_sec_relevant_cols'
  7613.               'user_secondary_objects'
  7614.               'user_segments'
  7615.               'user_sequences'
  7616.               'user_snapshot_logs'
  7617.               'user_snapshot_refresh_times'
  7618.               'user_snapshots'
  7619.               'user_source'
  7620.               'user_source_tables'
  7621.               'user_sqlj_type_attrs'
  7622.               'user_sqlj_type_methods'
  7623.               'user_sqlj_types'
  7624.               'user_sqlset'
  7625.               'user_sqlset_binds'
  7626.               'user_sqlset_definitions'
  7627.               'user_sqlset_plans'
  7628.               'user_sqlset_references'
  7629.               'user_sqlset_statements'
  7630.               'user_sqltune_binds'
  7631.               'user_sqltune_plans'
  7632.               'user_sqltune_rationale_plan'
  7633.               'user_sqltune_statistics'
  7634.               'user_stored_settings'
  7635.               'user_subpart_col_statistics'
  7636.               'user_subpart_histograms'
  7637.               'user_subpart_key_columns'
  7638.               'user_subpartition_templates'
  7639.               'user_subscribed_columns'
  7640.               'user_subscribed_tables'
  7641.               'user_subscriptions'
  7642.               'user_summaries'
  7643.               'user_summary_aggregates'
  7644.               'user_summary_detail_tables'
  7645.               'user_summary_joins'
  7646.               'user_summary_keys'
  7647.               'user_synonyms'
  7648.               'user_sys_privs'
  7649.               'user_tab_col_statistics'
  7650.               'user_tab_cols'
  7651.               'user_tab_columns'
  7652.               'user_tab_comments'
  7653.               'user_tab_histograms'
  7654.               'user_tab_modifications'
  7655.               'user_tab_partitions'
  7656.               'user_tab_privs'
  7657.               'user_tab_privs_made'
  7658.               'user_tab_privs_recd'
  7659.               'user_tab_statistics'
  7660.               'user_tab_stats_history'
  7661.               'user_tab_subpartitions'
  7662.               'user_tables'
  7663.               'user_tablespaces'
  7664.               'user_transformations'
  7665.               'user_trigger_cols'
  7666.               'user_triggers'
  7667.               'user_ts_quotas'
  7668.               'user_tune_mview'
  7669.               'user_type_attrs'
  7670.               'user_type_methods'
  7671.               'user_type_versions'
  7672.               'user_types'
  7673.               'user_unused_col_tabs'
  7674.               'user_updatable_columns'
  7675.               'user_users'
  7676.               'user_ustats'
  7677.               'user_varrays'
  7678.               'user_views'
  7679.               'user_warning_settings'
  7680.               'user_wm_cons_columns'
  7681.               'user_wm_constraints'
  7682.               'user_wm_ind_columns'
  7683.               'user_wm_ind_expressions'
  7684.               'user_wm_locked_tables'
  7685.               'user_wm_modified_tables'
  7686.               'user_wm_privs'
  7687.               'user_wm_ric_info'
  7688.               'user_wm_tab_triggers'
  7689.               'user_wm_versioned_tables'
  7690.               'user_wm_vt_errors'
  7691.               'user_workspace_privs'
  7692.               'user_workspace_savepoints'
  7693.               'user_workspaces'
  7694.               'user_xml_column_names'
  7695.               'user_xml_indexes'
  7696.               'user_xml_schemas'
  7697.               'user_xml_tab_cols'
  7698.               'user_xml_tables'
  7699.               'user_xml_view_cols'
  7700.               'user_xml_views'
  7701.               'utl_all_ind_comps'
  7702.               'utl_coll'
  7703.               'utl_compress'
  7704.               'utl_encode'
  7705.               'utl_file'
  7706.               'utl_gdk'
  7707.               'utl_http'
  7708.               'utl_i18n'
  7709.               'utl_inaddr'
  7710.               'utl_lms'
  7711.               'utl_match'
  7712.               'utl_nla'
  7713.               'utl_nla_array_dbl'
  7714.               'utl_nla_array_flt'
  7715.               'utl_nla_array_int'
  7716.               'utl_raw'
  7717.               'utl_ref'
  7718.               'utl_smtp'
  7719.               'utl_tcp'
  7720.               'utl_url'
  7721.               'v$_lock'
  7722.               'v$access'
  7723.               'v$active_instances'
  7724.               'v$active_services'
  7725.               'v$active_sess_pool_mth'
  7726.               'v$active_session_history'
  7727.               'v$advisor_progress'
  7728.               'v$alert_types'
  7729.               'v$aq'
  7730.               'v$aq1'
  7731.               'v$archive'
  7732.               'v$archive_dest'
  7733.               'v$archive_dest_status'
  7734.               'v$archive_gap'
  7735.               'v$archive_processes'
  7736.               'v$archived_log'
  7737.               'v$asm_alias'
  7738.               'v$asm_client'
  7739.               'v$asm_disk'
  7740.               'v$asm_disk_stat'
  7741.               'v$asm_diskgroup'
  7742.               'v$asm_diskgroup_stat'
  7743.               'v$asm_file'
  7744.               'v$asm_operation'
  7745.               'v$asm_template'
  7746.               'v$aw_aggregate_op'
  7747.               'v$aw_allocate_op'
  7748.               'v$aw_calc'
  7749.               'v$aw_longops'
  7750.               'v$aw_olap'
  7751.               'v$aw_session_info'
  7752.               'v$backup'
  7753.               'v$backup_archivelog_details'
  7754.               'v$backup_archivelog_summary'
  7755.               'v$backup_async_io'
  7756.               'v$backup_controlfile_details'
  7757.               'v$backup_controlfile_summary'
  7758.               'v$backup_copy_details'
  7759.               'v$backup_copy_summary'
  7760.               'v$backup_corruption'
  7761.               'v$backup_datafile'
  7762.               'v$backup_datafile_details'
  7763.               'v$backup_datafile_summary'
  7764.               'v$backup_device'
  7765.               'v$backup_files'
  7766.               'v$backup_piece'
  7767.               'v$backup_piece_details'
  7768.               'v$backup_redolog'
  7769.               'v$backup_set'
  7770.               'v$backup_set_details'
  7771.               'v$backup_set_summary'
  7772.               'v$backup_spfile'
  7773.               'v$backup_spfile_details'
  7774.               'v$backup_spfile_summary'
  7775.               'v$backup_sync_io'
  7776.               'v$bgprocess'
  7777.               'v$bh'
  7778.               'v$block_change_tracking'
  7779.               'v$blocking_quiesce'
  7780.               'v$bsp'
  7781.               'v$buffer_pool'
  7782.               'v$buffer_pool_statistics'
  7783.               'v$buffered_publishers'
  7784.               'v$buffered_queues'
  7785.               'v$buffered_subscribers'
  7786.               'v$circuit'
  7787.               'v$class_cache_transfer'
  7788.               'v$class_ping'
  7789.               'v$client_stats'
  7790.               'v$cluster_interconnects'
  7791.               'v$configured_interconnects'
  7792.               'v$context'
  7793.               'v$controlfile'
  7794.               'v$controlfile_record_section'
  7795.               'v$copy_corruption'
  7796.               'v$cr_block_server'
  7797.               'v$current_block_server'
  7798.               'v$database'
  7799.               'v$database_block_corruption'
  7800.               'v$database_incarnation'
  7801.               'v$datafile'
  7802.               'v$datafile_copy'
  7803.               'v$datafile_header'
  7804.               'v$dataguard_config'
  7805.               'v$dataguard_stats'
  7806.               'v$dataguard_status'
  7807.               'v$datapump_job'
  7808.               'v$datapump_session'
  7809.               'v$db_cache_advice'
  7810.               'v$db_object_cache'
  7811.               'v$db_pipes'
  7812.               'v$db_transportable_platform'
  7813.               'v$dbfile'
  7814.               'v$dblink'
  7815.               'v$deleted_object'
  7816.               'v$dispatcher'
  7817.               'v$dispatcher_config'
  7818.               'v$dispatcher_rate'
  7819.               'v$dlm_all_locks'
  7820.               'v$dlm_convert_local'
  7821.               'v$dlm_convert_remote'
  7822.               'v$dlm_latch'
  7823.               'v$dlm_locks'
  7824.               'v$dlm_misc'
  7825.               'v$dlm_ress'
  7826.               'v$dlm_traffic_controller'
  7827.               'v$enabledprivs'
  7828.               'v$enqueue_lock'
  7829.               'v$enqueue_stat'
  7830.               'v$enqueue_statistics'
  7831.               'v$event_histogram'
  7832.               'v$event_name'
  7833.               'v$eventmetric'
  7834.               'v$execution'
  7835.               'v$fast_start_servers'
  7836.               'v$fast_start_transactions'
  7837.               'v$file_cache_transfer'
  7838.               'v$file_histogram'
  7839.               'v$file_ping'
  7840.               'v$filemetric'
  7841.               'v$filemetric_history'
  7842.               'v$filespace_usage'
  7843.               'v$filestat'
  7844.               'v$fixed_table'
  7845.               'v$fixed_view_definition'
  7846.               'v$flash_recovery_area_usage'
  7847.               'v$flashback_database_log'
  7848.               'v$flashback_database_logfile'
  7849.               'v$flashback_database_stat'
  7850.               'v$gc_element'
  7851.               'v$gc_elements_with_collisions'
  7852.               'v$gcshvmaster_info'
  7853.               'v$gcspfmaster_info'
  7854.               'v$ges_blocking_enqueue'
  7855.               'v$ges_enqueue'
  7856.               'v$global_blocked_locks'
  7857.               'v$global_transaction'
  7858.               'v$globalcontext'
  7859.               'v$hs_agent'
  7860.               'v$hs_parameter'
  7861.               'v$hs_session'
  7862.               'v$hvmaster_info'
  7863.               'v$indexed_fixed_column'
  7864.               'v$instance'
  7865.               'v$instance_cache_transfer'
  7866.               'v$instance_log_group'
  7867.               'v$instance_recovery'
  7868.               'v$java_library_cache_memory'
  7869.               'v$java_pool_advice'
  7870.               'v$javapool'
  7871.               'v$latch'
  7872.               'v$latch_children'
  7873.               'v$latch_misses'
  7874.               'v$latch_parent'
  7875.               'v$latchholder'
  7876.               'v$latchname'
  7877.               'v$library_cache_memory'
  7878.               'v$librarycache'
  7879.               'v$license'
  7880.               'v$loadistat'
  7881.               'v$loadpstat'
  7882.               'v$lock'
  7883.               'v$lock_activity'
  7884.               'v$lock_element'
  7885.               'v$lock_type'
  7886.               'v$locked_object'
  7887.               'v$locks_with_collisions'
  7888.               'v$log'
  7889.               'v$log_history'
  7890.               'v$logfile'
  7891.               'v$loghist'
  7892.               'v$logmnr_callback'
  7893.               'v$logmnr_contents'
  7894.               'v$logmnr_dictionary'
  7895.               'v$logmnr_dictionary_load'
  7896.               'v$logmnr_latch'
  7897.               'v$logmnr_logfile'
  7898.               'v$logmnr_logs'
  7899.               'v$logmnr_parameters'
  7900.               'v$logmnr_process'
  7901.               'v$logmnr_region'
  7902.               'v$logmnr_session'
  7903.               'v$logmnr_stats'
  7904.               'v$logmnr_transaction'
  7905.               'v$logstdby'
  7906.               'v$logstdby_process'
  7907.               'v$logstdby_progress'
  7908.               'v$logstdby_state'
  7909.               'v$logstdby_stats'
  7910.               'v$logstdby_transaction'
  7911.               'v$managed_standby'
  7912.               'v$map_comp_list'
  7913.               'v$map_element'
  7914.               'v$map_ext_element'
  7915.               'v$map_file'
  7916.               'v$map_file_extent'
  7917.               'v$map_file_io_stack'
  7918.               'v$map_library'
  7919.               'v$map_subelement'
  7920.               'v$max_active_sess_target_mth'
  7921.               'v$metric'
  7922.               'v$metric_history'
  7923.               'v$metricgroup'
  7924.               'v$metricname'
  7925.               'v$mttr_target_advice'
  7926.               'v$mutex_sleep'
  7927.               'v$mutex_sleep_history'
  7928.               'v$mvrefresh'
  7929.               'v$mystat'
  7930.               'v$nls_parameters'
  7931.               'v$nls_valid_values'
  7932.               'v$object_dependency'
  7933.               'v$object_usage'
  7934.               'v$obsolete_parameter'
  7935.               'v$offline_range'
  7936.               'v$open_cursor'
  7937.               'v$option'
  7938.               'v$osstat'
  7939.               'v$parallel_degree_limit_mth'
  7940.               'v$parameter'
  7941.               'v$parameter_valid_values'
  7942.               'v$parameter2'
  7943.               'v$pga_target_advice'
  7944.               'v$pga_target_advice_histogram'
  7945.               'v$pgastat'
  7946.               'v$pq_sesstat'
  7947.               'v$pq_slave'
  7948.               'v$pq_sysstat'
  7949.               'v$pq_tqstat'
  7950.               'v$process'
  7951.               'v$process_memory'
  7952.               'v$process_memory_detail'
  7953.               'v$process_memory_detail_prog'
  7954.               'v$propagation_receiver'
  7955.               'v$propagation_sender'
  7956.               'v$proxy_archivedlog'
  7957.               'v$proxy_archivelog_details'
  7958.               'v$proxy_archivelog_summary'
  7959.               'v$proxy_copy_details'
  7960.               'v$proxy_copy_summary'
  7961.               'v$proxy_datafile'
  7962.               'v$pwfile_users'
  7963.               'v$px_buffer_advice'
  7964.               'v$px_process'
  7965.               'v$px_process_sysstat'
  7966.               'v$px_session'
  7967.               'v$px_sesstat'
  7968.               'v$queue'
  7969.               'v$queueing_mth'
  7970.               'v$recover_file'
  7971.               'v$recovery_file_dest'
  7972.               'v$recovery_file_status'
  7973.               'v$recovery_log'
  7974.               'v$recovery_progress'
  7975.               'v$recovery_status'
  7976.               'v$replprop'
  7977.               'v$replqueue'
  7978.               'v$reqdist'
  7979.               'v$reserved_words'
  7980.               'v$resource'
  7981.               'v$resource_limit'
  7982.               'v$restore_point'
  7983.               'v$resumable'
  7984.               'v$rfs_thread'
  7985.               'v$rman_backup_job_details'
  7986.               'v$rman_backup_subjob_details'
  7987.               'v$rman_backup_type'
  7988.               'v$rman_configuration'
  7989.               'v$rman_output'
  7990.               'v$rman_status'
  7991.               'v$rollname'
  7992.               'v$rollstat'
  7993.               'v$rowcache'
  7994.               'v$rowcache_parent'
  7995.               'v$rowcache_subordinate'
  7996.               'v$rsrc_cons_group_history'
  7997.               'v$rsrc_consumer_group'
  7998.               'v$rsrc_consumer_group_cpu_mth'
  7999.               'v$rsrc_plan'
  8000.               'v$rsrc_plan_cpu_mth'
  8001.               'v$rsrc_plan_history'
  8002.               'v$rsrc_session_info'
  8003.               'v$rule'
  8004.               'v$rule_set'
  8005.               'v$rule_set_aggregate_stats'
  8006.               'v$scheduler_running_jobs'
  8007.               'v$segment_statistics'
  8008.               'v$segstat'
  8009.               'v$segstat_name'
  8010.               'v$serv_mod_act_stats'
  8011.               'v$service_event'
  8012.               'v$service_stats'
  8013.               'v$service_wait_class'
  8014.               'v$servicemetric'
  8015.               'v$servicemetric_history'
  8016.               'v$services'
  8017.               'v$ses_optimizer_env'
  8018.               'v$sess_io'
  8019.               'v$sess_time_model'
  8020.               'v$session'
  8021.               'v$session_connect_info'
  8022.               'v$session_cursor_cache'
  8023.               'v$session_event'
  8024.               'v$session_fix_control'
  8025.               'v$session_longops'
  8026.               'v$session_object_cache'
  8027.               'v$session_wait'
  8028.               'v$session_wait_class'
  8029.               'v$session_wait_history'
  8030.               'v$sessmetric'
  8031.               'v$sesstat'
  8032.               'v$sga'
  8033.               'v$sga_current_resize_ops'
  8034.               'v$sga_dynamic_components'
  8035.               'v$sga_dynamic_free_memory'
  8036.               'v$sga_resize_ops'
  8037.               'v$sga_target_advice'
  8038.               'v$sgainfo'
  8039.               'v$sgastat'
  8040.               'v$shared_pool_advice'
  8041.               'v$shared_pool_reserved'
  8042.               'v$shared_server'
  8043.               'v$shared_server_monitor'
  8044.               'v$sort_segment'
  8045.               'v$sort_usage'
  8046.               'v$spparameter'
  8047.               'v$sql'
  8048.               'v$sql_bind_capture'
  8049.               'v$sql_bind_data'
  8050.               'v$sql_bind_metadata'
  8051.               'v$sql_cursor'
  8052.               'v$sql_join_filter'
  8053.               'v$sql_optimizer_env'
  8054.               'v$sql_plan'
  8055.               'v$sql_plan_statistics'
  8056.               'v$sql_plan_statistics_all'
  8057.               'v$sql_redirection'
  8058.               'v$sql_shared_cursor'
  8059.               'v$sql_shared_memory'
  8060.               'v$sql_workarea'
  8061.               'v$sql_workarea_active'
  8062.               'v$sql_workarea_histogram'
  8063.               'v$sqlarea'
  8064.               'v$sqlarea_plan_hash'
  8065.               'v$sqlstats'
  8066.               'v$sqltext'
  8067.               'v$sqltext_with_newlines'
  8068.               'v$standby_apply_snapshot'
  8069.               'v$standby_log'
  8070.               'v$statistics_level'
  8071.               'v$statname'
  8072.               'v$streams_apply_coordinator'
  8073.               'v$streams_apply_reader'
  8074.               'v$streams_apply_server'
  8075.               'v$streams_capture'
  8076.               'v$streams_pool_advice'
  8077.               'v$streams_transaction'
  8078.               'v$subcache'
  8079.               'v$sys_optimizer_env'
  8080.               'v$sys_time_model'
  8081.               'v$sysaux_occupants'
  8082.               'v$sysmetric'
  8083.               'v$sysmetric_history'
  8084.               'v$sysmetric_summary'
  8085.               'v$sysstat'
  8086.               'v$system_cursor_cache'
  8087.               'v$system_event'
  8088.               'v$system_fix_control'
  8089.               'v$system_parameter'
  8090.               'v$system_parameter2'
  8091.               'v$system_wait_class'
  8092.               'v$tablespace'
  8093.               'v$temp_cache_transfer'
  8094.               'v$temp_extent_map'
  8095.               'v$temp_extent_pool'
  8096.               'v$temp_histogram'
  8097.               'v$temp_ping'
  8098.               'v$temp_space_header'
  8099.               'v$tempfile'
  8100.               'v$temporary_lobs'
  8101.               'v$tempseg_usage'
  8102.               'v$tempstat'
  8103.               'v$thread'
  8104.               'v$threshold_types'
  8105.               'v$timer'
  8106.               'v$timezone_file'
  8107.               'v$timezone_names'
  8108.               'v$transaction'
  8109.               'v$transaction_enqueue'
  8110.               'v$transportable_platform'
  8111.               'v$tsm_sessions'
  8112.               'v$type_size'
  8113.               'v$undostat'
  8114.               'v$unusable_backupfile_details'
  8115.               'v$version'
  8116.               'v$vpd_policy'
  8117.               'v$waitclassmetric'
  8118.               'v$waitclassmetric_history'
  8119.               'v$waitstat'
  8120.               'v$wallet'
  8121.               'v$xml_audit_trail'
  8122.               'v_olapi_iface_object_history'
  8123.               'v_olapi_iface_op_history'
  8124.               'v_olapi_memory_op_history'
  8125.               'v_olapi_session_history'
  8126.               'verlag'
  8127.               'verlag_seq'
  8128.               'wm$all_nextver_view'
  8129.               'wm$all_version_hview_wdepth'
  8130.               'wm$base_hierarchy_view'
  8131.               'wm$base_nextver_view'
  8132.               'wm$base_version_view'
  8133.               'wm$conf_base_hierarchy_view'
  8134.               'wm$conf_base_nextver_view'
  8135.               'wm$conf1_hierarchy_view'
  8136.               'wm$conf1_nextver_view'
  8137.               'wm$conf2_hierarchy_view'
  8138.               'wm$conf2_nextver_view'
  8139.               'wm$curconflict_hierarchy_view'
  8140.               'wm$curconflict_nextvers_view'
  8141.               'wm$curconflict_parvers_view'
  8142.               'wm$current_child_nextvers_view'
  8143.               'wm$current_child_versions_view'
  8144.               'wm$current_cons_nextvers_view'
  8145.               'wm$current_cons_versions_view'
  8146.               'wm$current_hierarchy_view'
  8147.               'wm$current_nextvers_view'
  8148.               'wm$current_parvers_view'
  8149.               'wm$current_savepoints_view'
  8150.               'wm$current_ver_view'
  8151.               'wm$current_workspace_view'
  8152.               'wm$diff1_hierarchy_view'
  8153.               'wm$diff1_nextver_view'
  8154.               'wm$diff2_hierarchy_view'
  8155.               'wm$diff2_nextver_view'
  8156.               'wm$mw_nextvers_view'
  8157.               'wm$mw_versions_view'
  8158.               'wm$mw_versions_view_9i'
  8159.               'wm$parconflict_hierarchy_view'
  8160.               'wm$parconflict_nextvers_view'
  8161.               'wm$parconflict_parvers_view'
  8162.               'wm$parent_hierarchy_view'
  8163.               'wm$parent_workspace_view'
  8164.               'wm$parvers_view'
  8165.               'wm$table_nextvers_view'
  8166.               'wm$table_parvers_view'
  8167.               'wm$table_versions_in_live_view'
  8168.               'wm$table_ws_parvers_view'
  8169.               'wm$ver_bef_inst_nextvers_view'
  8170.               'wm$ver_bef_inst_parvers_view'
  8171.               'wm$versions_in_live_view'
  8172.               'wm_compress_batch_sizes'
  8173.               'wm_compressible_tables'
  8174.               'wm_events_info'
  8175.               'wm_installation'
  8176.               'wm_period'
  8177.               'wm_replication_info'
  8178.               'wmsys'
  8179.               'wpg_docload'
  8180.               'xdb'
  8181.               'xdb$string_list_t'
  8182.               'xdb_configuration'
  8183.               'xdb_dom_helper'
  8184.               'xdb_namespaces'
  8185.               'xdb_pvtrig_pkg'
  8186.               'xdb_rvtrig_pkg'
  8187.               'xdb_tools'
  8188.               'xdb_utilities'
  8189.               'xdburitype'
  8190.               'xml_type'
  8191.               'xmldom'
  8192.               'xmlformat'
  8193.               'xmlparser'
  8194.               'xmlschema_type'
  8195.               'xmlsequencetype'
  8196.               'xmltype'
  8197.               'xslprocessor')
  8198.             TokenTypes = 4
  8199.             IgnoreCase = True
  8200.           end>
  8201.         HighlightPos = cpAny
  8202.         IgnoreAsParent = False
  8203.       end
  8204.       item
  8205.         DisplayName = 'declare start'
  8206.         ConditionList = <
  8207.           item
  8208.             TagList.Strings = (
  8209.               'declare')
  8210.             TokenTypes = 4
  8211.             IgnoreCase = True
  8212.           end>
  8213.         BlockEnd = 'declare end'
  8214.         HighlightPos = cpAny
  8215.         DrawStaple = True
  8216.         IgnoreAsParent = False
  8217.       end
  8218.       item
  8219.         DisplayName = 'declare end'
  8220.         BlockName = 'declare start'
  8221.         StrictParent = True
  8222.         BlockType = btRangeEnd
  8223.         ConditionList = <
  8224.           item
  8225.             TagList.Strings = (
  8226.               'end')
  8227.             IgnoreCase = True
  8228.           end>
  8229.         BlockEnd = 'declare start'
  8230.         HighlightPos = cpAny
  8231.         IgnoreAsParent = False
  8232.       end
  8233.       item
  8234.         DisplayName = 'DDL start'
  8235.         BlockName = 'DDL start'
  8236.         StrictParent = True
  8237.         NotParent = True
  8238.         ConditionList = <
  8239.           item
  8240.             TagList.Strings = (
  8241.               'OR'
  8242.               'PACKAGE')
  8243.             CondType = tcNotEqual
  8244.             TokenTypes = 4
  8245.             IgnoreCase = True
  8246.           end
  8247.           item
  8248.             TagList.Strings = (
  8249.               'ALTER'
  8250.               'CREATE'
  8251.               'DROP'
  8252.               'REMAME'
  8253.               'TRUNCATE')
  8254.             TokenTypes = 4
  8255.             IgnoreCase = True
  8256.           end>
  8257.         BlockEnd = 'DDL end'
  8258.         NameFmt = '%s0 %s-1 %s-2'
  8259.         RefToCondEnd = True
  8260.         HighlightPos = cpAny
  8261.         TreeItemImage = 6
  8262.         IgnoreAsParent = False
  8263.       end
  8264.       item
  8265.         DisplayName = 'DDL end'
  8266.         BlockType = btRangeEnd
  8267.         ConditionList = <
  8268.           item
  8269.             TagList.Strings = (
  8270.               ';')
  8271.             TokenTypes = 8
  8272.           end>
  8273.         BlockEnd = 'DDL start'
  8274.         HighlightPos = cpAny
  8275.         IgnoreAsParent = False
  8276.       end>
  8277.     CodeTemplates = <>
  8278.     SubAnalyzers = <>
  8279.     SampleText.Strings = (
  8280.       '/* This calculates a nextdate for a defined interval.'
  8281.       
  8282.         '   The function works similar to the functionality in DBMS_JOB *' +
  8283.         '/'
  8284.       'FUNCTION calc_next_date (i_interval IN VARCHAR2,'
  8285.       
  8286.         '                         i_default  IN DATE DEFAULT SYSDATE) RET' +
  8287.         'URN DATE IS'
  8288.       '  v_date DATE;'
  8289.       '  v_statement VARCHAR2(5000);'
  8290.       'BEGIN'
  8291.       '  IF i_interval IS NULL THEN'
  8292.       
  8293.         '    RETURN (i_default);-- if no interval defined return the defa' +
  8294.         'ult value'
  8295.       '  ELSE'
  8296.       '    v_statement := '#39'SELECT '#39'||i_interval||'#39' FROM DUAL'#39';'
  8297.       '    execute immediate v_statement into v_date;'
  8298.       '    RETURN (v_date);'
  8299.       '  END IF;'
  8300.       'EXCEPTION'
  8301.       
  8302.         '  WHEN OTHERS THEN  -- if any error occurs, return the default v' +
  8303.         'alue'
  8304.       '    RETURN (i_default);'
  8305.       'END calc_next_date;')
  8306.     TokenTypeNames.Strings = (
  8307.       'Unknown'
  8308.       'Comment'
  8309.       'Identifier'
  8310.       'Symbol'
  8311.       'String'
  8312.       'Integer const'
  8313.       'Float const')
  8314.     Gramma.Gramma = 
  8315.       'Complex_name =  <Identifier> | Complex_name "." <Identifier>;'#13#10'P' +
  8316.       'ackage_declaration = '#39'package'#39' ('#39'body'#39')? Complex_name ('#39'is'#39' | '#39'a' +
  8317.       's'#39');'#13#10'type_declaration = '#39'type'#39' ('#39'body'#39')? Complex_name ('#39'is'#39' | '#39 +
  8318.       'as'#39');'#13#10
  8319.     MarkedBlockStyle = 'Marked block'
  8320.     CurrentLineStyle = 'Current Line'
  8321.     DefaultStyleName = 'Default'
  8322.     Extentions = 'sql pck'
  8323.     LexerName = 'PL/SQL'
  8324.     FullRefreshSize = 5000
  8325.     LineComment = '--'
  8326.     AlwaysSyncBlockAnal = True
  8327.     Left = 144
  8328.     Top = 184
  8329.   end
  8330.   object SyntAnalyzer5: TLibSyntAnalyzer
  8331.     Formats = <
  8332.       item
  8333.         DisplayName = 'Default'
  8334.         Font.Charset = DEFAULT_CHARSET
  8335.         Font.Color = clWindowText
  8336.         Font.Height = -13
  8337.         Font.Name = 'Courier New'
  8338.         Font.Style = []
  8339.         FormatType = ftCustomFont
  8340.       end
  8341.       item
  8342.         DisplayName = 'Identifier'
  8343.         Font.Charset = DEFAULT_CHARSET
  8344.         Font.Color = clWindowText
  8345.         Font.Height = -13
  8346.         Font.Name = 'Courier New'
  8347.         Font.Style = []
  8348.       end
  8349.       item
  8350.         DisplayName = 'Reserved word'
  8351.         Font.Charset = DEFAULT_CHARSET
  8352.         Font.Color = clWindowText
  8353.         Font.Height = -13
  8354.         Font.Name = 'Courier New'
  8355.         Font.Style = [fsBold]
  8356.       end
  8357.       item
  8358.         DisplayName = 'Comment'
  8359.         Font.Charset = DEFAULT_CHARSET
  8360.         Font.Color = clRed
  8361.         Font.Height = -13
  8362.         Font.Name = 'Courier New'
  8363.         Font.Style = [fsBold]
  8364.       end
  8365.       item
  8366.         DisplayName = 'String'
  8367.         Font.Charset = DEFAULT_CHARSET
  8368.         Font.Color = clBlue
  8369.         Font.Height = -13
  8370.         Font.Name = 'Courier New'
  8371.         Font.Style = []
  8372.       end
  8373.       item
  8374.         DisplayName = 'Number'
  8375.         Font.Charset = DEFAULT_CHARSET
  8376.         Font.Color = clNavy
  8377.         Font.Height = -13
  8378.         Font.Name = 'Courier New'
  8379.         Font.Style = [fsBold]
  8380.       end
  8381.       item
  8382.         DisplayName = 'Symbol'
  8383.         Font.Charset = DEFAULT_CHARSET
  8384.         Font.Color = clMaroon
  8385.         Font.Height = -13
  8386.         Font.Name = 'Courier New'
  8387.         Font.Style = [fsBold]
  8388.       end
  8389.       item
  8390.         DisplayName = 'Blob Data'
  8391.         Font.Charset = DEFAULT_CHARSET
  8392.         Font.Color = clFuchsia
  8393.         Font.Height = -13
  8394.         Font.Name = 'Courier New'
  8395.         Font.Style = []
  8396.       end
  8397.       item
  8398.         DisplayName = 'Marked block'
  8399.         Font.Charset = DEFAULT_CHARSET
  8400.         Font.Color = clHighlightText
  8401.         Font.Height = -13
  8402.         Font.Name = 'Courier New'
  8403.         Font.Style = []
  8404.         BgColor = clHighlight
  8405.         FormatType = ftColor
  8406.       end>
  8407.     TokenRules = <
  8408.       item
  8409.         DisplayName = 'Comment 2'
  8410.         StyleName = 'Comment'
  8411.         TokenType = 1
  8412.         Expression = '(?s)\{.*?(\}|\Z)'
  8413.         ColumnFrom = 0
  8414.         ColumnTo = 0
  8415.       end
  8416.       item
  8417.         DisplayName = 'Blob data'
  8418.         StyleName = 'Blob Data'
  8419.         BlockName = 'Blob begin'
  8420.         Expression = '[^\}]'
  8421.         ColumnFrom = 0
  8422.         ColumnTo = 0
  8423.       end
  8424.       item
  8425.         DisplayName = 'String'
  8426.         StyleName = 'String'
  8427.         TokenType = 4
  8428.         Expression = #39'.*?('#39'|$)'
  8429.         ColumnFrom = 0
  8430.         ColumnTo = 0
  8431.       end
  8432.       item
  8433.         DisplayName = 'Any name'
  8434.         StyleName = 'Identifier'
  8435.         TokenType = 2
  8436.         Expression = '[a-z_]\w*'
  8437.         ColumnFrom = 0
  8438.         ColumnTo = 0
  8439.       end
  8440.       item
  8441.         DisplayName = 'Float'
  8442.         StyleName = 'Number'
  8443.         TokenType = 6
  8444.         Expression = '\d+\.?\d+e[\+\-]?\d+|\d+\.\d+'
  8445.         ColumnFrom = 0
  8446.         ColumnTo = 0
  8447.       end
  8448.       item
  8449.         DisplayName = 'Integer'
  8450.         StyleName = 'Number'
  8451.         TokenType = 5
  8452.         Expression = '\d+'
  8453.         ColumnFrom = 0
  8454.         ColumnTo = 0
  8455.       end
  8456.       item
  8457.         DisplayName = 'HEX'
  8458.         StyleName = 'Number'
  8459.         TokenType = 7
  8460.         Expression = '\$[\da-f]+'
  8461.         ColumnFrom = 0
  8462.         ColumnTo = 0
  8463.       end
  8464.       item
  8465.         DisplayName = 'Symbol'
  8466.         StyleName = 'Symbol'
  8467.         TokenType = 3
  8468.         Expression = '[/,\.;:\(\)=<>\+\-\{\}]'
  8469.         ColumnFrom = 0
  8470.         ColumnTo = 0
  8471.       end
  8472.       item
  8473.         DisplayName = 'Char'
  8474.         StyleName = 'String'
  8475.         TokenType = 8
  8476.         Expression = '\#(\d+|\$[\da-f]+)'
  8477.         ColumnFrom = 0
  8478.         ColumnTo = 0
  8479.       end>
  8480.     BlockRules = <
  8481.       item
  8482.         DisplayName = 'Key words'
  8483.         StyleName = 'Reserved word'
  8484.         BlockType = btTagDetect
  8485.         ConditionList = <
  8486.           item
  8487.             TagList.Strings = (
  8488.               'end'
  8489.               'inherited'
  8490.               'inline'
  8491.               'item'
  8492.               'object')
  8493.             TokenTypes = 4
  8494.             IgnoreCase = True
  8495.           end>
  8496.         HighlightPos = cpAny
  8497.         IgnoreAsParent = False
  8498.       end
  8499.       item
  8500.         DisplayName = 'End'
  8501.         BlockType = btRangeEnd
  8502.         ConditionList = <
  8503.           item
  8504.             TagList.Strings = (
  8505.               'end')
  8506.             TokenTypes = 4
  8507.             IgnoreCase = True
  8508.           end>
  8509.         HighlightPos = cpAny
  8510.         IgnoreAsParent = False
  8511.       end
  8512.       item
  8513.         DisplayName = 'Begin'
  8514.         ConditionList = <
  8515.           item
  8516.             TagList.Strings = (
  8517.               'inherited'
  8518.               'item'
  8519.               'object')
  8520.             TokenTypes = 4
  8521.             IgnoreCase = True
  8522.           end>
  8523.         BlockEnd = 'End'
  8524.         NameFmt = '%s0 %s-1%s-2 %s-3'
  8525.         HighlightPos = cpAny
  8526.         DrawStaple = True
  8527.         CollapseFmt = '%s0 %s-1%s-2 %s-3'
  8528.         IgnoreAsParent = False
  8529.       end
  8530.       item
  8531.         DisplayName = 'Collection begin'
  8532.         ConditionList = <
  8533.           item
  8534.             TagList.Strings = (
  8535.               '<')
  8536.             TokenTypes = 8
  8537.           end>
  8538.         BlockOffset = 2
  8539.         BlockEnd = 'Collection end'
  8540.         NameFmt = '%s2 (collection)'
  8541.         HighlightPos = cpAny
  8542.         DrawStaple = True
  8543.         CollapseFmt = '< %s2 >'
  8544.         IgnoreAsParent = False
  8545.       end
  8546.       item
  8547.         DisplayName = 'Collection end'
  8548.         BlockType = btRangeEnd
  8549.         ConditionList = <
  8550.           item
  8551.             TagList.Strings = (
  8552.               '>')
  8553.             TokenTypes = 8
  8554.           end>
  8555.         HighlightPos = cpAny
  8556.         IgnoreAsParent = False
  8557.       end
  8558.       item
  8559.         DisplayName = 'List begin'
  8560.         ConditionList = <
  8561.           item
  8562.             TagList.Strings = (
  8563.               '(')
  8564.             TokenTypes = 8
  8565.           end>
  8566.         BlockOffset = 4
  8567.         BlockEnd = 'List end'
  8568.         NameFmt = '%s2 (list)'
  8569.         HighlightPos = cpAny
  8570.         DrawStaple = True
  8571.         CollapseFmt = '( %s2 )'
  8572.         IgnoreAsParent = False
  8573.       end
  8574.       item
  8575.         DisplayName = 'List end'
  8576.         BlockType = btRangeEnd
  8577.         ConditionList = <
  8578.           item
  8579.             TagList.Strings = (
  8580.               ')')
  8581.             TokenTypes = 8
  8582.           end>
  8583.         HighlightPos = cpAny
  8584.         IgnoreAsParent = False
  8585.       end
  8586.       item
  8587.         DisplayName = 'Blob begin'
  8588.         StyleName = 'Blob Data'
  8589.         ConditionList = <
  8590.           item
  8591.             TagList.Strings = (
  8592.               '{')
  8593.             TokenTypes = 8
  8594.           end>
  8595.         BlockEnd = 'Blob end'
  8596.         HighlightPos = cpAny
  8597.         DrawStaple = True
  8598.         IgnoreAsParent = False
  8599.       end
  8600.       item
  8601.         DisplayName = 'Blob end'
  8602.         BlockType = btRangeEnd
  8603.         ConditionList = <
  8604.           item
  8605.             TagList.Strings = (
  8606.               '}')
  8607.             TokenTypes = 8
  8608.           end>
  8609.         HighlightPos = cpAny
  8610.         IgnoreAsParent = False
  8611.       end>
  8612.     CodeTemplates = <>
  8613.     SubAnalyzers = <>
  8614.     SampleText.Strings = (
  8615.       '{ Delphi/C++ Builder Form Definitions }'
  8616.       'object TestForm: TTestForm'
  8617.       '  Left = 273'
  8618.       '  Top = 103'
  8619.       '  Caption = '#39'SynEdit sample source'#39
  8620.       'end')
  8621.     TokenTypeNames.Strings = (
  8622.       'Unknown'
  8623.       'Comment'
  8624.       'Identifier'
  8625.       'Symbol'
  8626.       'String'
  8627.       'Integer const'
  8628.       'Float const'
  8629.       'Hex const'
  8630.       'Char const')
  8631.     MarkedBlockStyle = 'Marked block'
  8632.     DefaultStyleName = 'Default'
  8633.     Extentions = 'dfm lxl lcf'
  8634.     LexerName = 'Delphi resources'
  8635.   end
  8636.   object SyntAnalyzer7: TLibSyntAnalyzer
  8637.     Formats = <
  8638.       item
  8639.         DisplayName = 'Default'
  8640.         Font.Charset = RUSSIAN_CHARSET
  8641.         Font.Color = clWindowText
  8642.         Font.Height = -13
  8643.         Font.Name = 'Courier New'
  8644.         Font.Style = []
  8645.         FormatType = ftCustomFont
  8646.       end
  8647.       item
  8648.         DisplayName = 'Section'
  8649.         Font.Charset = RUSSIAN_CHARSET
  8650.         Font.Color = clMaroon
  8651.         Font.Height = -13
  8652.         Font.Name = 'Courier New'
  8653.         Font.Style = [fsBold]
  8654.         BgColor = 15658734
  8655.       end
  8656.       item
  8657.         DisplayName = 'Parameter'
  8658.         Font.Charset = RUSSIAN_CHARSET
  8659.         Font.Color = clWindowText
  8660.         Font.Height = -13
  8661.         Font.Name = 'Courier New'
  8662.         Font.Style = [fsBold]
  8663.       end
  8664.       item
  8665.         DisplayName = 'Value'
  8666.         Font.Charset = RUSSIAN_CHARSET
  8667.         Font.Color = clBlue
  8668.         Font.Height = -13
  8669.         Font.Name = 'Courier New'
  8670.         Font.Style = []
  8671.       end
  8672.       item
  8673.         DisplayName = 'Symbol'
  8674.         Font.Charset = RUSSIAN_CHARSET
  8675.         Font.Color = clRed
  8676.         Font.Height = -13
  8677.         Font.Name = 'Courier New'
  8678.         Font.Style = [fsBold]
  8679.       end
  8680.       item
  8681.         DisplayName = 'Comment'
  8682.         Font.Charset = RUSSIAN_CHARSET
  8683.         Font.Color = clFuchsia
  8684.         Font.Height = -13
  8685.         Font.Name = 'Courier New'
  8686.         Font.Style = [fsItalic]
  8687.       end
  8688.       item
  8689.         DisplayName = 'Marked block'
  8690.         Font.Charset = RUSSIAN_CHARSET
  8691.         Font.Color = clHighlightText
  8692.         Font.Height = -13
  8693.         Font.Name = 'Courier New'
  8694.         Font.Style = []
  8695.         BgColor = clHighlight
  8696.         FormatType = ftColor
  8697.       end
  8698.       item
  8699.         DisplayName = 'Number'
  8700.         Font.Charset = RUSSIAN_CHARSET
  8701.         Font.Color = clNavy
  8702.         Font.Height = -13
  8703.         Font.Name = 'Courier New'
  8704.         Font.Style = [fsBold]
  8705.       end>
  8706.     TokenRules = <
  8707.       item
  8708.         DisplayName = 'Comment'
  8709.         StyleName = 'Comment'
  8710.         TokenType = 1
  8711.         Expression = '^;.*$'#13#10
  8712.         ColumnFrom = 0
  8713.         ColumnTo = 0
  8714.       end
  8715.       item
  8716.         DisplayName = 'Section'
  8717.         StyleName = 'Section'
  8718.         TokenType = 8
  8719.         Expression = '(?s)^\[.*?\]'
  8720.         ColumnFrom = 0
  8721.         ColumnTo = 0
  8722.       end
  8723.       item
  8724.         DisplayName = 'Parameter'
  8725.         StyleName = 'Parameter'
  8726.         TokenType = 2
  8727.         Expression = '^[^=\n\r]+'
  8728.         ColumnFrom = 0
  8729.         ColumnTo = 0
  8730.       end
  8731.       item
  8732.         DisplayName = 'Equal sign'
  8733.         TokenType = 3
  8734.         Expression = '='
  8735.         ColumnFrom = 0
  8736.         ColumnTo = 0
  8737.       end
  8738.       item
  8739.         DisplayName = 'Float'
  8740.         StyleName = 'Number'
  8741.         TokenType = 6
  8742.         Expression = '[\d]+\.?[\d]+e[\+\-]?[\d]+|[\d]+\.[\d]+$'
  8743.         ColumnFrom = 0
  8744.         ColumnTo = 0
  8745.       end
  8746.       item
  8747.         DisplayName = 'Integer'
  8748.         StyleName = 'Number'
  8749.         TokenType = 5
  8750.         Expression = '[\d]+$'
  8751.         ColumnFrom = 0
  8752.         ColumnTo = 0
  8753.       end
  8754.       item
  8755.         DisplayName = 'Value'
  8756.         StyleName = 'Value'
  8757.         TokenType = 4
  8758.         Expression = '.*$'
  8759.         ColumnFrom = 0
  8760.         ColumnTo = 0
  8761.       end>
  8762.     BlockRules = <
  8763.       item
  8764.         DisplayName = 'Section begin'
  8765.         ConditionList = <
  8766.           item
  8767.             TokenTypes = 256
  8768.           end>
  8769.         EndOfTextClose = True
  8770.         HighlightPos = cpAny
  8771.         CollapseFmt = '%s0'
  8772.         SelfClose = True
  8773.         TreeItemStyle = 'Section'
  8774.         IgnoreAsParent = False
  8775.       end
  8776.       item
  8777.         DisplayName = 'Item begin'
  8778.         ConditionList = <
  8779.           item
  8780.             TokenTypes = 112
  8781.           end
  8782.           item
  8783.             TokenTypes = 8
  8784.           end
  8785.           item
  8786.             TokenTypes = 4
  8787.           end>
  8788.         NotCollapsed = True
  8789.         NameFmt = '%s0 = %s-2'
  8790.         RefToCondEnd = True
  8791.         HighlightPos = cpAny
  8792.         NoEndRule = True
  8793.         TreeItemStyle = 'Value'
  8794.         IgnoreAsParent = False
  8795.       end>
  8796.     CodeTemplates = <>
  8797.     SubAnalyzers = <>
  8798.     TokenTypeNames.Strings = (
  8799.       'Unknown'
  8800.       'Comment'
  8801.       'Parameter'
  8802.       'Symbol'
  8803.       'Value'
  8804.       'Integer const'
  8805.       'Float const'
  8806.       'Hex const'
  8807.       'Section')
  8808.     MarkedBlockStyle = 'Marked block'
  8809.     DefaultStyleName = 'Default'
  8810.     Extentions = 'ini dsk dti dof inf lng srv reg'
  8811.     LexerName = 'Ini files'
  8812.   end
  8813.   object SyntAnal7: TLibSyntAnalyzer
  8814.     Formats = <
  8815.       item
  8816.         DisplayName = 'Default'
  8817.         Font.Charset = DEFAULT_CHARSET
  8818.         Font.Color = clWindowText
  8819.         Font.Height = -13
  8820.         Font.Name = 'Courier New'
  8821.         Font.Style = []
  8822.         FormatType = ftCustomFont
  8823.       end
  8824.       item
  8825.         DisplayName = 'Marked block'
  8826.         Font.Charset = DEFAULT_CHARSET
  8827.         Font.Color = clHighlightText
  8828.         Font.Height = -13
  8829.         Font.Name = 'Courier New'
  8830.         Font.Style = []
  8831.         BgColor = clHighlight
  8832.         FormatType = ftColor
  8833.       end>
  8834.     TokenRules = <>
  8835.     BlockRules = <>
  8836.     CodeTemplates = <>
  8837.     SubAnalyzers = <
  8838.       item
  8839.         DisplayName = 'Style sheet'
  8840.         AlwaysEnabled = True
  8841.         StartExpression = '(?si)<style[^>]*> '#13#10
  8842.         EndExpression = '</style>'#13#10
  8843.         SyntAnalyzer = SyntAnalyzer10
  8844.       end
  8845.       item
  8846.         DisplayName = 'VB script'
  8847.         AlwaysEnabled = True
  8848.         StartExpression = '(?si)<script[^>]*vbscript[^>]*>\s*(<!--)?'#13#10
  8849.         EndExpression = '(?i)(-->)?\s*</script>'#13#10
  8850.       end
  8851.       item
  8852.         DisplayName = 'Java script'
  8853.         AlwaysEnabled = True
  8854.         StartExpression = '(?si)<script[^>]*javascript[^>]*>\s*(<!--)?'#13#10
  8855.         EndExpression = '(?i)(//)?(-->)?\s*</script>'#13#10
  8856.         SyntAnalyzer = SyntAnal6
  8857.       end
  8858.       item
  8859.         DisplayName = 'ASP'
  8860.         AlwaysEnabled = True
  8861.         StartExpression = '<%'#13#10'#(?i)<%@[^>]*?vbscript[^>]*>'#13#10'#\s*<%'#13#10
  8862.         EndExpression = '%>'#13#10
  8863.       end
  8864.       item
  8865.         DisplayName = 'PHP'
  8866.         AlwaysEnabled = True
  8867.         StartExpression = '(?si)<script[^>]*php[^>]*>\s*(<!--)?'#13#10
  8868.         EndExpression = '(?i)(-->)?\s*</script>'#13#10
  8869.       end
  8870.       item
  8871.         DisplayName = 'PHP 2'
  8872.         AlwaysEnabled = True
  8873.         StartExpression = '(?i)<\?(php)?'#13#10
  8874.         EndExpression = '\?>'#13#10
  8875.       end
  8876.       item
  8877.         DisplayName = 'HTML'
  8878.         SyntAnalyzer = SyntAnalyzer9
  8879.         FromTextBegin = True
  8880.         ToTextEnd = True
  8881.       end>
  8882.     TokenTypeNames.Strings = (
  8883.       'Unknown'
  8884.       'Comment'
  8885.       'Identifier'
  8886.       'Symbol'
  8887.       'String'
  8888.       'Integer const'
  8889.       'Float const'
  8890.       'Hex const'
  8891.       'Char const'
  8892.       'Preprocessor')
  8893.     MarkedBlockStyle = 'Marked block'
  8894.     DefaultStyleName = 'Default'
  8895.     Extentions = 'htm html'
  8896.     LexerName = 'XHTML'
  8897.   end
  8898.   object SyntAnalyzer9: TLibSyntAnalyzer
  8899.     Formats = <
  8900.       item
  8901.         DisplayName = 'Default'
  8902.         Font.Charset = DEFAULT_CHARSET
  8903.         Font.Color = clWindowText
  8904.         Font.Height = -13
  8905.         Font.Name = 'Courier New'
  8906.         Font.Style = []
  8907.         FormatType = ftCustomFont
  8908.       end
  8909.       item
  8910.         DisplayName = 'Text'
  8911.         Font.Charset = DEFAULT_CHARSET
  8912.         Font.Color = clBlack
  8913.         Font.Height = -13
  8914.         Font.Name = 'Courier New'
  8915.         Font.Style = []
  8916.         BgColor = clInfoBk
  8917.         MultiLineBorder = True
  8918.       end
  8919.       item
  8920.         DisplayName = 'Tag bound'
  8921.         Font.Charset = DEFAULT_CHARSET
  8922.         Font.Color = clGray
  8923.         Font.Height = -13
  8924.         Font.Name = 'Courier New'
  8925.         Font.Style = [fsBold]
  8926.       end
  8927.       item
  8928.         DisplayName = 'Comment'
  8929.         Font.Charset = DEFAULT_CHARSET
  8930.         Font.Color = clRed
  8931.         Font.Height = -13
  8932.         Font.Name = 'Courier New'
  8933.         Font.Style = [fsBold]
  8934.       end
  8935.       item
  8936.         DisplayName = 'Tag param'
  8937.         Font.Charset = DEFAULT_CHARSET
  8938.         Font.Color = clBlue
  8939.         Font.Height = -13
  8940.         Font.Name = 'Courier New'
  8941.         Font.Style = []
  8942.       end
  8943.       item
  8944.         DisplayName = 'Tag properties'
  8945.         Font.Charset = DEFAULT_CHARSET
  8946.         Font.Color = clPurple
  8947.         Font.Height = -13
  8948.         Font.Name = 'Courier New'
  8949.         Font.Style = []
  8950.       end
  8951.       item
  8952.         DisplayName = 'Unknown tag content'
  8953.         Font.Charset = DEFAULT_CHARSET
  8954.         Font.Color = clFuchsia
  8955.         Font.Height = -13
  8956.         Font.Name = 'Courier New'
  8957.         Font.Style = [fsBold, fsUnderline]
  8958.       end
  8959.       item
  8960.         DisplayName = 'Tag Key'
  8961.         Font.Charset = DEFAULT_CHARSET
  8962.         Font.Color = clWindowText
  8963.         Font.Height = -13
  8964.         Font.Name = 'Courier New'
  8965.         Font.Style = [fsBold]
  8966.       end
  8967.       item
  8968.         DisplayName = 'Number'
  8969.         Font.Charset = DEFAULT_CHARSET
  8970.         Font.Color = clNavy
  8971.         Font.Height = -13
  8972.         Font.Name = 'Courier New'
  8973.         Font.Style = [fsBold]
  8974.       end
  8975.       item
  8976.         DisplayName = 'Bound'
  8977.         Enabled = False
  8978.         Font.Charset = DEFAULT_CHARSET
  8979.         Font.Color = clWindowText
  8980.         Font.Height = -13
  8981.         Font.Name = 'Courier New'
  8982.         Font.Style = []
  8983.         BorderTypeLeft = blSolid
  8984.         BorderColorLeft = clGray
  8985.         BorderTypeTop = blSolid
  8986.         BorderColorTop = clGray
  8987.         BorderTypeRight = blSolid
  8988.         BorderColorRight = clGray
  8989.         BorderTypeBottom = blSolid
  8990.         BorderColorBottom = clGray
  8991.         MultiLineBorder = True
  8992.       end
  8993.       item
  8994.         DisplayName = 'Marked block'
  8995.         Font.Charset = DEFAULT_CHARSET
  8996.         Font.Color = clHighlightText
  8997.         Font.Height = -13
  8998.         Font.Name = 'Courier New'
  8999.         Font.Style = []
  9000.         BgColor = clHighlight
  9001.         FormatType = ftColor
  9002.       end
  9003.       item
  9004.         DisplayName = 'Tree item (attribute)'
  9005.         Font.Charset = DEFAULT_CHARSET
  9006.         Font.Color = clBlue
  9007.         Font.Height = -13
  9008.         Font.Name = 'Courier New'
  9009.         Font.Style = []
  9010.         BgColor = 14155775
  9011.         FormatType = ftColor
  9012.       end
  9013.       item
  9014.         DisplayName = 'Tree item (tag)'
  9015.         Font.Charset = DEFAULT_CHARSET
  9016.         Font.Color = clWindowText
  9017.         Font.Height = -13
  9018.         Font.Name = 'Courier New'
  9019.         Font.Style = [fsBold]
  9020.       end>
  9021.     TokenRules = <
  9022.       item
  9023.         DisplayName = 'Comment'
  9024.         StyleName = 'Comment'
  9025.         TokenType = 1
  9026.         Expression = '(?ms)<!--.*?(-->|\Z)'
  9027.         ColumnFrom = 0
  9028.         ColumnTo = 0
  9029.       end
  9030.       item
  9031.         DisplayName = 'Comment end'
  9032.         StyleName = 'Comment'
  9033.         TokenType = 1
  9034.         Expression = '# for use in <SCRIPT>'#13#10'-->'#13#10
  9035.         ColumnFrom = 0
  9036.         ColumnTo = 0
  9037.       end
  9038.       item
  9039.         DisplayName = '<'
  9040.         StyleName = 'Tag bound'
  9041.         TokenType = 10
  9042.         Expression = '<[/!\-]*'
  9043.         ColumnFrom = 0
  9044.         ColumnTo = 0
  9045.       end
  9046.       item
  9047.         DisplayName = '>'
  9048.         StyleName = 'Tag bound'
  9049.         TokenType = 11
  9050.         Expression = '>'#13#10
  9051.         ColumnFrom = 0
  9052.         ColumnTo = 0
  9053.       end
  9054.       item
  9055.         DisplayName = 'Integer'
  9056.         StyleName = 'Number'
  9057.         BlockName = 'Tag begin'
  9058.         TokenType = 5
  9059.         Expression = '\d+'
  9060.         ColumnFrom = 0
  9061.         ColumnTo = 0
  9062.       end
  9063.       item
  9064.         DisplayName = 'HEX'
  9065.         StyleName = 'Number'
  9066.         BlockName = 'Tag begin'
  9067.         TokenType = 7
  9068.         Expression = '\#[a-f\d]+'
  9069.         ColumnFrom = 0
  9070.         ColumnTo = 0
  9071.       end
  9072.       item
  9073.         DisplayName = 'Tag param'
  9074.         StyleName = 'Tag param'
  9075.         BlockName = 'Tag begin'
  9076.         TokenType = 4
  9077.         Expression = '(?s)".*?("|\Z)'
  9078.         ColumnFrom = 0
  9079.         ColumnTo = 0
  9080.       end
  9081.       item
  9082.         DisplayName = 'Tag ident'
  9083.         BlockName = 'Tag begin'
  9084.         TokenType = 2
  9085.         Expression = '[^\s=>]+'
  9086.         ColumnFrom = 0
  9087.         ColumnTo = 0
  9088.       end
  9089.       item
  9090.         DisplayName = '='
  9091.         StyleName = 'Tag bound'
  9092.         BlockName = 'Tag begin'
  9093.         TokenType = 3
  9094.         Expression = '='#13#10
  9095.         ColumnFrom = 0
  9096.         ColumnTo = 0
  9097.       end
  9098.       item
  9099.         DisplayName = 'Unknow tag content'
  9100.         StyleName = 'Unknown tag content'
  9101.         BlockName = 'Tag begin'
  9102.         Expression = '[^>]*'
  9103.         ColumnFrom = 0
  9104.         ColumnTo = 0
  9105.       end
  9106.       item
  9107.         DisplayName = '&...'
  9108.         StyleName = 'Tag Key'
  9109.         TokenType = 9
  9110.         Expression = '&\w+;'
  9111.         ColumnFrom = 0
  9112.         ColumnTo = 0
  9113.       end
  9114.       item
  9115.         DisplayName = 'Text'
  9116.         StyleName = 'Text'
  9117.         TokenType = 9
  9118.         Expression = '[^<&]*'
  9119.         ColumnFrom = 0
  9120.         ColumnTo = 0
  9121.       end>
  9122.     BlockRules = <
  9123.       item
  9124.         DisplayName = 'Tag keys'
  9125.         StyleName = 'Tag Key'
  9126.         BlockType = btTagDetect
  9127.         ConditionList = <
  9128.           item
  9129.             TokenTypes = 4
  9130.           end
  9131.           item
  9132.             TagList.Strings = (
  9133.               '<'
  9134.               '</')
  9135.             TokenTypes = 1024
  9136.           end>
  9137.         HighlightPos = cpAny
  9138.         IgnoreAsParent = False
  9139.       end
  9140.       item
  9141.         DisplayName = 'Tag property'
  9142.         StyleName = 'Tag properties'
  9143.         BlockType = btTagDetect
  9144.         ConditionList = <
  9145.           item
  9146.             TagList.Strings = (
  9147.               '=')
  9148.             TokenTypes = 8
  9149.           end
  9150.           item
  9151.             TokenTypes = 4
  9152.           end>
  9153.         IdentIndex = 1
  9154.         HighlightPos = cpAny
  9155.         IgnoreAsParent = False
  9156.       end
  9157.       item
  9158.         DisplayName = 'Tag property value'
  9159.         StyleName = 'Tag param'
  9160.         BlockType = btTagDetect
  9161.         ConditionList = <
  9162.           item
  9163.             TokenTypes = 20
  9164.           end
  9165.           item
  9166.             TagList.Strings = (
  9167.               '=')
  9168.             TokenTypes = 8
  9169.           end>
  9170.         HighlightPos = cpAny
  9171.         IgnoreAsParent = False
  9172.       end
  9173.       item
  9174.         DisplayName = 'Tag begin'
  9175.         ConditionList = <
  9176.           item
  9177.             TokenTypes = 1024
  9178.           end>
  9179.         BlockEnd = 'Tag end'
  9180.         NotCollapsed = True
  9181.         DisplayInTree = False
  9182.         DynHighlight = dhRange
  9183.         HighlightPos = cpAny
  9184.         IgnoreAsParent = False
  9185.       end
  9186.       item
  9187.         DisplayName = 'Tag end'
  9188.         BlockType = btRangeEnd
  9189.         ConditionList = <
  9190.           item
  9191.             TokenTypes = 2048
  9192.           end>
  9193.         HighlightPos = cpAny
  9194.         IgnoreAsParent = False
  9195.       end
  9196.       item
  9197.         DisplayName = 'Simple tag block'
  9198.         ConditionList = <
  9199.           item
  9200.             TagList.Strings = (
  9201.               'br'
  9202.               'hr'
  9203.               'image'
  9204.               'img'
  9205.               'link')
  9206.             TokenTypes = 4
  9207.             IgnoreCase = True
  9208.           end
  9209.           item
  9210.             TagList.Strings = (
  9211.               '<')
  9212.             TokenTypes = 1024
  9213.           end>
  9214.         BlockEnd = 'Simple tag block end'
  9215.         HighlightPos = cpAny
  9216.         TreeItemStyle = 'Tree item (tag)'
  9217.         IgnoreAsParent = False
  9218.       end
  9219.       item
  9220.         DisplayName = 'Simple tag block end'
  9221.         BlockName = 'Simple tag block'
  9222.         StrictParent = True
  9223.         BlockType = btRangeEnd
  9224.         ConditionList = <
  9225.           item
  9226.             TokenTypes = 2048
  9227.           end>
  9228.         HighlightPos = cpAny
  9229.         IgnoreAsParent = False
  9230.       end
  9231.       item
  9232.         DisplayName = 'Tag block begin'
  9233.         ConditionList = <
  9234.           item
  9235.             TagList.Strings = (
  9236.               'br'
  9237.               'hr'
  9238.               'image'
  9239.               'img'
  9240.               'link')
  9241.             CondType = tcNotEqual
  9242.             TokenTypes = 4
  9243.             IgnoreCase = True
  9244.           end
  9245.           item
  9246.             TagList.Strings = (
  9247.               '<'
  9248.               '<!')
  9249.             TokenTypes = 1024
  9250.           end>
  9251.         BlockOffset = 1
  9252.         BlockEnd = 'Tag block end'
  9253.         HighlightPos = cpAny
  9254.         CollapseFmt = '< %s0 >'
  9255.         TreeItemStyle = 'Tree item (tag)'
  9256.         IgnoreAsParent = False
  9257.       end
  9258.       item
  9259.         DisplayName = 'Tag block end'
  9260.         BlockType = btRangeEnd
  9261.         ConditionList = <
  9262.           item
  9263.             TokenTypes = 4
  9264.             IgnoreCase = True
  9265.           end
  9266.           item
  9267.             TagList.Strings = (
  9268.               '</')
  9269.             TokenTypes = 1024
  9270.           end>
  9271.         BlockOffset = -1
  9272.         SameIdent = True
  9273.         HighlightPos = cpAny
  9274.         IgnoreAsParent = False
  9275.       end
  9276.       item
  9277.         DisplayName = 'Comment begin'
  9278.         ConditionList = <
  9279.           item
  9280.             TokenTypes = 2
  9281.           end>
  9282.         BlockEnd = 'Comment end'
  9283.         DisplayInTree = False
  9284.         HighlightPos = cpAny
  9285.         CollapseFmt = '<!--  ...  -->'
  9286.         IgnoreAsParent = False
  9287.       end
  9288.       item
  9289.         DisplayName = 'Comment end'
  9290.         BlockType = btRangeEnd
  9291.         ConditionList = <
  9292.           item
  9293.             TokenTypes = 2
  9294.           end>
  9295.         HighlightPos = cpAny
  9296.         IgnoreAsParent = False
  9297.       end
  9298.       item
  9299.         DisplayName = 'Tag attribute'
  9300.         BlockName = 'Tag begin'
  9301.         ConditionList = <
  9302.           item
  9303.             TokenTypes = 20
  9304.           end
  9305.           item
  9306.             TagList.Strings = (
  9307.               '=')
  9308.             TokenTypes = 8
  9309.           end
  9310.           item
  9311.             TokenTypes = 4
  9312.           end>
  9313.         NotCollapsed = True
  9314.         NameFmt = '%s0 %s-1 %s-2'
  9315.         HighlightPos = cpAny
  9316.         NoEndRule = True
  9317.         TreeItemStyle = 'Tree item (attribute)'
  9318.         IgnoreAsParent = False
  9319.       end>
  9320.     CodeTemplates = <>
  9321.     SubAnalyzers = <>
  9322.     TokenTypeNames.Strings = (
  9323.       'Unknown'
  9324.       'Comment'
  9325.       'Identifier'
  9326.       'Symbol'
  9327.       'String'
  9328.       'Integer const'
  9329.       'Float const'
  9330.       'Hex const'
  9331.       'Char const'
  9332.       'Text'
  9333.       'Open Tag'
  9334.       'Close Tag')
  9335.     MarkedBlockStyle = 'Marked block'
  9336.     DefaultStyleName = 'Default'
  9337.     Extentions = 'htm html'
  9338.     LexerName = 'HTML'
  9339.     Internal = True
  9340.   end
  9341.   object SyntAnalyzer10: TLibSyntAnalyzer
  9342.     Formats = <
  9343.       item
  9344.         DisplayName = 'Default'
  9345.         Font.Charset = DEFAULT_CHARSET
  9346.         Font.Color = clWindowText
  9347.         Font.Height = -13
  9348.         Font.Name = 'Courier New'
  9349.         Font.Style = []
  9350.         FormatType = ftCustomFont
  9351.       end
  9352.       item
  9353.         DisplayName = 'Style'
  9354.         Font.Charset = DEFAULT_CHARSET
  9355.         Font.Color = clNavy
  9356.         Font.Height = -13
  9357.         Font.Name = 'Courier New'
  9358.         Font.Style = [fsBold]
  9359.       end
  9360.       item
  9361.         DisplayName = 'Param'
  9362.         Font.Charset = DEFAULT_CHARSET
  9363.         Font.Color = clRed
  9364.         Font.Height = -13
  9365.         Font.Name = 'Courier New'
  9366.         Font.Style = []
  9367.       end
  9368.       item
  9369.         DisplayName = 'Value'
  9370.         Font.Charset = DEFAULT_CHARSET
  9371.         Font.Color = clBlue
  9372.         Font.Height = -13
  9373.         Font.Name = 'Courier New'
  9374.         Font.Style = []
  9375.       end
  9376.       item
  9377.         DisplayName = 'Symbol'
  9378.         Font.Charset = DEFAULT_CHARSET
  9379.         Font.Color = clMaroon
  9380.         Font.Height = -13
  9381.         Font.Name = 'Courier New'
  9382.         Font.Style = [fsBold]
  9383.       end
  9384.       item
  9385.         DisplayName = 'Comment'
  9386.         Font.Charset = DEFAULT_CHARSET
  9387.         Font.Color = clBtnShadow
  9388.         Font.Height = -13
  9389.         Font.Name = 'Courier New'
  9390.         Font.Style = [fsItalic]
  9391.       end
  9392.       item
  9393.         DisplayName = 'Current block'
  9394.         Font.Charset = DEFAULT_CHARSET
  9395.         Font.Color = clWindowText
  9396.         Font.Height = -13
  9397.         Font.Name = 'Courier New'
  9398.         Font.Style = []
  9399.         BgColor = clWhite
  9400.         FormatType = ftBackGround
  9401.       end
  9402.       item
  9403.         DisplayName = 'Marked block'
  9404.         Font.Charset = DEFAULT_CHARSET
  9405.         Font.Color = clHighlightText
  9406.         Font.Height = -13
  9407.         Font.Name = 'Courier New'
  9408.         Font.Style = []
  9409.         BgColor = clHighlight
  9410.         FormatType = ftColor
  9411.       end>
  9412.     TokenRules = <
  9413.       item
  9414.         DisplayName = '{}'
  9415.         StyleName = 'Symbol'
  9416.         TokenType = 3
  9417.         Expression = '[\{\}]'
  9418.         ColumnFrom = 0
  9419.         ColumnTo = 0
  9420.       end
  9421.       item
  9422.         DisplayName = 'Ident'
  9423.         StyleName = 'Param'
  9424.         BlockName = 'Style begin'
  9425.         TokenType = 4
  9426.         Expression = '[\.-\w]+'
  9427.         ColumnFrom = 0
  9428.         ColumnTo = 0
  9429.       end
  9430.       item
  9431.         DisplayName = 'Symbol'
  9432.         StyleName = 'Symbol'
  9433.         BlockName = 'Style begin'
  9434.         TokenType = 9
  9435.         Expression = '[;:,]'
  9436.         ColumnFrom = 0
  9437.         ColumnTo = 0
  9438.       end
  9439.       item
  9440.         DisplayName = 'Style'
  9441.         StyleName = 'Style'
  9442.         TokenType = 2
  9443.         Expression = '[\w:\#\.\-]+'
  9444.         ColumnFrom = 0
  9445.         ColumnTo = 0
  9446.       end
  9447.       item
  9448.         DisplayName = 'Comment 1'
  9449.         StyleName = 'Comment'
  9450.         TokenType = 1
  9451.         Expression = '(?s)/\*.*?(\*/|\Z)'
  9452.         ColumnFrom = 0
  9453.         ColumnTo = 0
  9454.       end>
  9455.     BlockRules = <
  9456.       item
  9457.         DisplayName = 'Style begin'
  9458.         StyleName = 'Current block'
  9459.         ConditionList = <
  9460.           item
  9461.             TagList.Strings = (
  9462.               '{')
  9463.             TokenTypes = 8
  9464.           end>
  9465.         IdentIndex = 1
  9466.         BlockOffset = 1
  9467.         BlockEnd = 'Style end'
  9468.         Highlight = True
  9469.         InvertColors = True
  9470.         DynHighlight = dhRange
  9471.         HighlightPos = cpRange
  9472.         DynSelectMin = True
  9473.         IgnoreAsParent = False
  9474.       end
  9475.       item
  9476.         DisplayName = 'Style end'
  9477.         BlockType = btRangeEnd
  9478.         ConditionList = <
  9479.           item
  9480.             TagList.Strings = (
  9481.               '}')
  9482.             TokenTypes = 8
  9483.           end>
  9484.         HighlightPos = cpAny
  9485.         IgnoreAsParent = False
  9486.       end
  9487.       item
  9488.         DisplayName = 'Param'
  9489.         StyleName = 'Value'
  9490.         BlockType = btTagDetect
  9491.         ConditionList = <
  9492.           item
  9493.             TagList.Strings = (
  9494.               ':')
  9495.             CondType = tcNotEqual
  9496.             TokenTypes = 520
  9497.           end
  9498.           item
  9499.             TokenTypes = 16
  9500.           end>
  9501.         IdentIndex = 1
  9502.         HighlightPos = cpAny
  9503.         IgnoreAsParent = False
  9504.       end
  9505.       item
  9506.         DisplayName = 'Param to tree'
  9507.         ConditionList = <
  9508.           item
  9509.             TagList.Strings = (
  9510.               ':')
  9511.             TokenTypes = 512
  9512.           end
  9513.           item
  9514.             TokenTypes = 16
  9515.           end>
  9516.         IdentIndex = 1
  9517.         BlockOffset = 1
  9518.         BlockEnd = 'Param end'
  9519.         HighlightPos = cpAny
  9520.         IgnoreAsParent = False
  9521.       end
  9522.       item
  9523.         DisplayName = 'Param end'
  9524.         BlockType = btRangeEnd
  9525.         ConditionList = <
  9526.           item
  9527.             TagList.Strings = (
  9528.               ';'
  9529.               '}')
  9530.           end>
  9531.         BlockOffset = 1
  9532.         DisplayInTree = False
  9533.         HighlightPos = cpAny
  9534.         IgnoreAsParent = False
  9535.       end>
  9536.     CodeTemplates = <>
  9537.     SubAnalyzers = <>
  9538.     SampleText.Strings = (
  9539.       '/* Syntax Highlighting */'
  9540.       'body { '
  9541.       '  font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; '
  9542.       '  font-size: 8pt '
  9543.       '}'
  9544.       'H1 { '
  9545.       '  font-size: 18pt; '
  9546.       '  color: #000099; '
  9547.       '  made-up-property: 1 '
  9548.       '}')
  9549.     TokenTypeNames.Strings = (
  9550.       'Unknown'
  9551.       'Comment'
  9552.       'Identifier'
  9553.       'Symbol'
  9554.       'String'
  9555.       'Integer const'
  9556.       'Float const'
  9557.       'Hex const'
  9558.       'Char const'
  9559.       'Delimiter')
  9560.     MarkedBlockStyle = 'Marked block'
  9561.     DefaultStyleName = 'Default'
  9562.     Extentions = 'css'
  9563.     LexerName = 'Style sheets '
  9564.   end
  9565.   object SyntAnalyzer13: TLibSyntAnalyzer
  9566.     Formats = <
  9567.       item
  9568.         DisplayName = 'Default'
  9569.         Font.Charset = DEFAULT_CHARSET
  9570.         Font.Color = clWindowText
  9571.         Font.Height = -13
  9572.         Font.Name = 'Courier New'
  9573.         Font.Style = []
  9574.         FormatType = ftCustomFont
  9575.       end
  9576.       item
  9577.         DisplayName = 'Comment'
  9578.         Font.Charset = DEFAULT_CHARSET
  9579.         Font.Color = clRed
  9580.         Font.Height = -13
  9581.         Font.Name = 'Courier New'
  9582.         Font.Style = [fsBold]
  9583.       end
  9584.       item
  9585.         DisplayName = 'Marked block'
  9586.         Font.Charset = DEFAULT_CHARSET
  9587.         Font.Color = clHighlightText
  9588.         Font.Height = -13
  9589.         Font.Name = 'Courier New'
  9590.         Font.Style = []
  9591.         BgColor = clHighlight
  9592.         FormatType = ftColor
  9593.       end
  9594.       item
  9595.         DisplayName = 'Ident'
  9596.         Font.Charset = DEFAULT_CHARSET
  9597.         Font.Color = clMaroon
  9598.         Font.Height = -13
  9599.         Font.Name = 'Courier New'
  9600.         Font.Style = []
  9601.       end
  9602.       item
  9603.         DisplayName = 'Integer'
  9604.         Font.Charset = DEFAULT_CHARSET
  9605.         Font.Color = clNavy
  9606.         Font.Height = -13
  9607.         Font.Name = 'Courier New'
  9608.         Font.Style = [fsBold]
  9609.       end
  9610.       item
  9611.         DisplayName = 'HEX'
  9612.         Font.Charset = DEFAULT_CHARSET
  9613.         Font.Color = clGreen
  9614.         Font.Height = -13
  9615.         Font.Name = 'Courier New'
  9616.         Font.Style = [fsBold]
  9617.       end
  9618.       item
  9619.         DisplayName = 'Label'
  9620.         Font.Charset = DEFAULT_CHARSET
  9621.         Font.Color = clWindowText
  9622.         Font.Height = -13
  9623.         Font.Name = 'Courier New'
  9624.         Font.Style = [fsItalic]
  9625.       end
  9626.       item
  9627.         DisplayName = 'reserved words'
  9628.         Font.Charset = DEFAULT_CHARSET
  9629.         Font.Color = clWindowText
  9630.         Font.Height = -13
  9631.         Font.Name = 'Courier New'
  9632.         Font.Style = [fsBold]
  9633.       end
  9634.       item
  9635.         DisplayName = 'Registers'
  9636.         Font.Charset = DEFAULT_CHARSET
  9637.         Font.Color = clBlue
  9638.         Font.Height = -13
  9639.         Font.Name = 'Courier New'
  9640.         Font.Style = [fsBold]
  9641.       end>
  9642.     TokenRules = <
  9643.       item
  9644.         DisplayName = 'Comment'
  9645.         StyleName = 'Comment'
  9646.         TokenType = 1
  9647.         Expression = ';.*'
  9648.         ColumnFrom = 0
  9649.         ColumnTo = 0
  9650.       end
  9651.       item
  9652.         DisplayName = 'Labels'
  9653.         StyleName = 'Label'
  9654.         Expression = '@+\w*'#13#10
  9655.         ColumnFrom = 0
  9656.         ColumnTo = 0
  9657.       end
  9658.       item
  9659.         DisplayName = 'Hex'
  9660.         StyleName = 'HEX'
  9661.         TokenType = 7
  9662.         Expression = '[\da-f]+h'
  9663.         ColumnFrom = 0
  9664.         ColumnTo = 0
  9665.       end
  9666.       item
  9667.         DisplayName = 'Integer'
  9668.         StyleName = 'Integer'
  9669.         TokenType = 5
  9670.         Expression = '\d+'
  9671.         ColumnFrom = 0
  9672.         ColumnTo = 0
  9673.       end
  9674.       item
  9675.         DisplayName = 'Ident'
  9676.         StyleName = 'Ident'
  9677.         TokenType = 2
  9678.         Expression = '[a-z_]\w*'
  9679.         ColumnFrom = 0
  9680.         ColumnTo = 0
  9681.       end>
  9682.     BlockRules = <
  9683.       item
  9684.         DisplayName = 'Registers'
  9685.         StyleName = 'Registers'
  9686.         BlockType = btTagDetect
  9687.         ConditionList = <
  9688.           item
  9689.             TagList.Strings = (
  9690.               'ah'
  9691.               'al'
  9692.               'ax'
  9693.               'bh'
  9694.               'bl'
  9695.               'bp'
  9696.               'bx'
  9697.               'ch'
  9698.               'cl'
  9699.               'cs'
  9700.               'cx'
  9701.               'dh'
  9702.               'di'
  9703.               'ds'
  9704.               'dx'
  9705.               'eax'
  9706.               'ebp'
  9707.               'ebx'
  9708.               'ecx'
  9709.               'edi'
  9710.               'edx'
  9711.               'eip'
  9712.               'es'
  9713.               'esc'
  9714.               'esi'
  9715.               'esp'
  9716.               'sp'
  9717.               'ss')
  9718.             TokenTypes = 4
  9719.             IgnoreCase = True
  9720.           end>
  9721.         HighlightPos = cpAny
  9722.         IgnoreAsParent = False
  9723.       end
  9724.       item
  9725.         DisplayName = 'Reserved words'
  9726.         StyleName = 'reserved words'
  9727.         BlockType = btTagDetect
  9728.         ConditionList = <
  9729.           item
  9730.             TagList.Strings = (
  9731.               'aaa'
  9732.               'aad'
  9733.               'aam'
  9734.               'aas'
  9735.               'adc'
  9736.               'add'
  9737.               'and'
  9738.               'arpl'
  9739.               'assume'
  9740.               'bound'
  9741.               'bsf'
  9742.               'bsr'
  9743.               'bswap'
  9744.               'bt'
  9745.               'btc'
  9746.               'btr'
  9747.               'bts'
  9748.               'byte'
  9749.               'call'
  9750.               'cbw'
  9751.               'cdq'
  9752.               'clc'
  9753.               'cld'
  9754.               'cli'
  9755.               'clts'
  9756.               'cmc'
  9757.               'cmp'
  9758.               'cmps'
  9759.               'cmpsb'
  9760.               'cmpsd'
  9761.               'cmpsw'
  9762.               'cmpxchg'
  9763.               'comment'
  9764.               'cwd'
  9765.               'cwde'
  9766.               'daa'
  9767.               'das'
  9768.               'db'
  9769.               'dd'
  9770.               'dec'
  9771.               'div'
  9772.               'dl'
  9773.               'dq'
  9774.               'dt'
  9775.               'dw'
  9776.               'dword'
  9777.               'end'
  9778.               'endm'
  9779.               'endp'
  9780.               'ends'
  9781.               'enter'
  9782.               'eq'
  9783.               'equ'
  9784.               'exitm'
  9785.               'extrn'
  9786.               'f2xm1'
  9787.               'fabs'
  9788.               'fadd'
  9789.               'faddp'
  9790.               'far'
  9791.               'fbld'
  9792.               'fbstp'
  9793.               'fchs'
  9794.               'fclex'
  9795.               'fcom'
  9796.               'fcomp'
  9797.               'fcompp'
  9798.               'fcos'
  9799.               'fdecstp'
  9800.               'fdisi'
  9801.               'fdiv'
  9802.               'fdivp'
  9803.               'fdivr'
  9804.               'fdivrp'
  9805.               'feni'
  9806.               'ffree'
  9807.               'fiadd'
  9808.               'ficom'
  9809.               'ficomp'
  9810.               'fidiv'
  9811.               'fidivr'
  9812.               'fild'
  9813.               'fimul'
  9814.               'fincstp'
  9815.               'finit'
  9816.               'fist'
  9817.               'fistp'
  9818.               'fisub'
  9819.               'fisubr'
  9820.               'fld'
  9821.               'fld1'
  9822.               'fldcw'
  9823.               'fldenv'
  9824.               'fldl2e'
  9825.               'fldl2t'
  9826.               'fldlg2'
  9827.               'fldln2'
  9828.               'fldpi'
  9829.               'fldz'
  9830.               'fmul'
  9831.               'fmulp'
  9832.               'fnclex'
  9833.               'fndisi'
  9834.               'fneni'
  9835.               'fninit'
  9836.               'fnop'
  9837.               'fnsave'
  9838.               'fnstcw'
  9839.               'fnstenv'
  9840.               'fnstsw'
  9841.               'fpatan'
  9842.               'fprem'
  9843.               'fprem1'
  9844.               'fptan'
  9845.               'frndint'
  9846.               'frstor'
  9847.               'fs'
  9848.               'fsave'
  9849.               'fscale'
  9850.               'fsetpm'
  9851.               'fsin'
  9852.               'fsincos'
  9853.               'fsqrt'
  9854.               'fst'
  9855.               'fstcw'
  9856.               'fstenv'
  9857.               'fstp'
  9858.               'fstsw'
  9859.               'fsub'
  9860.               'fsubp'
  9861.               'fsubr'
  9862.               'fsubrp'
  9863.               'ftst'
  9864.               'fucom'
  9865.               'fucomp'
  9866.               'fucompp'
  9867.               'fwait'
  9868.               'fxam'
  9869.               'fxch'
  9870.               'fxtract'
  9871.               'fyl2x'
  9872.               'fyl2xp1'
  9873.               'ge'
  9874.               'group'
  9875.               'gs'
  9876.               'gt'
  9877.               'high'
  9878.               'hlt'
  9879.               'idiv'
  9880.               'imul'
  9881.               'in'
  9882.               'inc'
  9883.               'include'
  9884.               'insb'
  9885.               'insd'
  9886.               'insw'
  9887.               'int'
  9888.               'into'
  9889.               'invd'
  9890.               'invlpg'
  9891.               'iret'
  9892.               'iretd'
  9893.               'ja'
  9894.               'jae'
  9895.               'jb'
  9896.               'jbe'
  9897.               'jc'
  9898.               'jcxz'
  9899.               'je'
  9900.               'jecxz'
  9901.               'jg'
  9902.               'jge'
  9903.               'jl'
  9904.               'jle'
  9905.               'jmp'
  9906.               'jna'
  9907.               'jnae'
  9908.               'jnb'
  9909.               'jnbe'
  9910.               'jnc'
  9911.               'jne'
  9912.               'jng'
  9913.               'jnge'
  9914.               'jnl'
  9915.               'jnle'
  9916.               'jno'
  9917.               'jnp'
  9918.               'jns'
  9919.               'jnz'
  9920.               'jo'
  9921.               'jp'
  9922.               'jpe'
  9923.               'jpo'
  9924.               'js'
  9925.               'jz'
  9926.               'label'
  9927.               'lahf'
  9928.               'lar'
  9929.               'large'
  9930.               'lds'
  9931.               'le'
  9932.               'lea'
  9933.               'leave'
  9934.               'length'
  9935.               'les'
  9936.               'lfs'
  9937.               'lgdt'
  9938.               'lgs'
  9939.               'lidt'
  9940.               'lldt'
  9941.               'lmsw'
  9942.               'local'
  9943.               'lock'
  9944.               'lods'
  9945.               'lodsb'
  9946.               'lodsd'
  9947.               'lodsw'
  9948.               'loop'
  9949.               'loopd'
  9950.               'loopde'
  9951.               'loopdne'
  9952.               'loopdnz'
  9953.               'loopdz'
  9954.               'loope'
  9955.               'loopne'
  9956.               'loopnz'
  9957.               'loopz'
  9958.               'low'
  9959.               'lsl'
  9960.               'lss'
  9961.               'lt'
  9962.               'ltr'
  9963.               'macro'
  9964.               'mask'
  9965.               'mod'
  9966.               'mov'
  9967.               'movs'
  9968.               'movsb'
  9969.               'movsd'
  9970.               'movsw'
  9971.               'movsx'
  9972.               'movzx'
  9973.               'mul'
  9974.               'name'
  9975.               'near'
  9976.               'neg'
  9977.               'nop'
  9978.               'not'
  9979.               'offset'
  9980.               'or'
  9981.               'org'
  9982.               'out'
  9983.               'outsb'
  9984.               'outsd'
  9985.               'outsw'
  9986.               'page'
  9987.               'pop'
  9988.               'popa'
  9989.               'popad'
  9990.               'popf'
  9991.               'popfd'
  9992.               'proc'
  9993.               'ptr'
  9994.               'public'
  9995.               'purge'
  9996.               'push'
  9997.               'pusha'
  9998.               'pushad'
  9999.               'pushf'
  10000.               'pushfd'
  10001.               'qword'
  10002.               'rcl'
  10003.               'rcr'
  10004.               'record'
  10005.               'rep'
  10006.               'repe'
  10007.               'repne'
  10008.               'repnz'
  10009.               'rept'
  10010.               'repz'
  10011.               'ret'
  10012.               'retf'
  10013.               'retn'
  10014.               'rol'
  10015.               'ror'
  10016.               'sahf'
  10017.               'sal'
  10018.               'sar'
  10019.               'sbb'
  10020.               'scas'
  10021.               'scasb'
  10022.               'scasd'
  10023.               'scasw'
  10024.               'seg'
  10025.               'segcs'
  10026.               'segds'
  10027.               'seges'
  10028.               'segfs'
  10029.               'seggs'
  10030.               'segment'
  10031.               'segss'
  10032.               'seta'
  10033.               'setae'
  10034.               'setb'
  10035.               'setbe'
  10036.               'setc'
  10037.               'sete'
  10038.               'setg'
  10039.               'setge'
  10040.               'setl'
  10041.               'setle'
  10042.               'setna'
  10043.               'setnae'
  10044.               'setnb'
  10045.               'setnbe'
  10046.               'setnc'
  10047.               'setne'
  10048.               'setng'
  10049.               'setnge'
  10050.               'setnl'
  10051.               'setnle'
  10052.               'setno'
  10053.               'setnp'
  10054.               'setns'
  10055.               'setnz'
  10056.               'seto'
  10057.               'setp'
  10058.               'setpe'
  10059.               'setpo'
  10060.               'sets'
  10061.               'setz'
  10062.               'sgdt'
  10063.               'shl'
  10064.               'shld'
  10065.               'short'
  10066.               'shr'
  10067.               'shrd'
  10068.               'si'
  10069.               'sidt'
  10070.               'size'
  10071.               'sldt'
  10072.               'small'
  10073.               'smsw'
  10074.               'st'
  10075.               'stc'
  10076.               'std'
  10077.               'sti'
  10078.               'stos'
  10079.               'stosb'
  10080.               'stosd'
  10081.               'stosw'
  10082.               'str'
  10083.               'struc'
  10084.               'sub'
  10085.               'subttl'
  10086.               'symtype'
  10087.               'tbyte'
  10088.               'test'
  10089.               'this'
  10090.               'title'
  10091.               'type'
  10092.               'verr'
  10093.               'verw'
  10094.               'wait'
  10095.               'wbinvd'
  10096.               'width'
  10097.               'word'
  10098.               'xadd'
  10099.               'xchg'
  10100.               'xlat'
  10101.               'xor')
  10102.             TokenTypes = 4
  10103.             IgnoreCase = True
  10104.           end>
  10105.         HighlightPos = cpAny
  10106.         IgnoreAsParent = False
  10107.       end>
  10108.     CodeTemplates = <>
  10109.     SubAnalyzers = <>
  10110.     SampleText.Strings = (
  10111.       '; x86 assembly sample source'
  10112.       '  CODE'#9'SEGMENT'#9'BYTE PUBLIC '
  10113.       '    ASSUME'#9'CS:CODE'
  10114.       '    '
  10115.       '    PUSH SS'
  10116.       '    POP DS'
  10117.       '    MOV AX, AABBh'
  10118.       '    MOV'#9'BYTE PTR ES:[DI], 255'
  10119.       '    JMP SHORT @AsmEnd'
  10120.       ''
  10121.       '  welcomeMsg DB '#39#39'Hello World'#39#39', 0'
  10122.       ''
  10123.       '  @AsmEnd:'
  10124.       '    MOV AX, 0'
  10125.       ''
  10126.       '  CODE'#9'ENDS'
  10127.       'END')
  10128.     TokenTypeNames.Strings = (
  10129.       'Unknown'
  10130.       'Comment'
  10131.       'Identifier'
  10132.       'Symbol'
  10133.       'String'
  10134.       'Integer const'
  10135.       'Float const'
  10136.       'Hex const'
  10137.       'Char const'
  10138.       'Preprocessor')
  10139.     MarkedBlockStyle = 'Marked block'
  10140.     DefaultStyleName = 'Default'
  10141.     Extentions = 'asm'
  10142.     LexerName = 'Assembler'
  10143.   end
  10144.   object SyntAnalyzer12: TLibSyntAnalyzer
  10145.     Formats = <
  10146.       item
  10147.         DisplayName = 'Default'
  10148.         Font.Charset = DEFAULT_CHARSET
  10149.         Font.Color = clWindowText
  10150.         Font.Height = -13
  10151.         Font.Name = 'Courier New'
  10152.         Font.Style = []
  10153.         FormatType = ftCustomFont
  10154.       end
  10155.       item
  10156.         DisplayName = 'Comment'
  10157.         Font.Charset = DEFAULT_CHARSET
  10158.         Font.Color = clRed
  10159.         Font.Height = -13
  10160.         Font.Name = 'Courier New'
  10161.         Font.Style = []
  10162.       end
  10163.       item
  10164.         DisplayName = 'Key words'
  10165.         Font.Charset = DEFAULT_CHARSET
  10166.         Font.Color = clWindowText
  10167.         Font.Height = -13
  10168.         Font.Name = 'Courier New'
  10169.         Font.Style = [fsBold]
  10170.       end
  10171.       item
  10172.         DisplayName = 'Commands'
  10173.         Font.Charset = DEFAULT_CHARSET
  10174.         Font.Color = clNavy
  10175.         Font.Height = -13
  10176.         Font.Name = 'Courier New'
  10177.         Font.Style = [fsBold, fsUnderline]
  10178.       end
  10179.       item
  10180.         DisplayName = 'Params'
  10181.         Font.Charset = DEFAULT_CHARSET
  10182.         Font.Color = clBlue
  10183.         Font.Height = -13
  10184.         Font.Name = 'Courier New'
  10185.         Font.Style = []
  10186.       end
  10187.       item
  10188.         DisplayName = 'Echo'
  10189.         Font.Charset = DEFAULT_CHARSET
  10190.         Font.Color = clPurple
  10191.         Font.Height = -13
  10192.         Font.Name = 'Courier New'
  10193.         Font.Style = [fsBold]
  10194.         BgColor = clInfoBk
  10195.       end
  10196.       item
  10197.         DisplayName = 'Label'
  10198.         Font.Charset = DEFAULT_CHARSET
  10199.         Font.Color = clPurple
  10200.         Font.Height = -13
  10201.         Font.Name = 'Courier New'
  10202.         Font.Style = [fsBold, fsItalic]
  10203.       end
  10204.       item
  10205.         DisplayName = 'Marked block'
  10206.         Font.Charset = DEFAULT_CHARSET
  10207.         Font.Color = clHighlightText
  10208.         Font.Height = -13
  10209.         Font.Name = 'Courier New'
  10210.         Font.Style = []
  10211.         BgColor = clHighlight
  10212.         FormatType = ftColor
  10213.       end>
  10214.     TokenRules = <
  10215.       item
  10216.         DisplayName = 'Echo'
  10217.         StyleName = 'Key words'
  10218.         TokenType = 5
  10219.         Expression = '^@?echo'#13#10
  10220.         ColumnFrom = 0
  10221.         ColumnTo = 0
  10222.       end
  10223.       item
  10224.         DisplayName = 'echo text'
  10225.         StyleName = 'Echo'
  10226.         BlockName = 'echo start'
  10227.         StrictParent = True
  10228.         TokenType = 4
  10229.         Expression = '.*'#13#10
  10230.         ColumnFrom = 0
  10231.         ColumnTo = 0
  10232.       end
  10233.       item
  10234.         DisplayName = 'Comment'
  10235.         StyleName = 'Comment'
  10236.         TokenType = 1
  10237.         Expression = '^rem .*'
  10238.         ColumnFrom = 0
  10239.         ColumnTo = 0
  10240.       end
  10241.       item
  10242.         DisplayName = 'Label'
  10243.         StyleName = 'Label'
  10244.         TokenType = 3
  10245.         Expression = '^: .*'#13#10
  10246.         ColumnFrom = 0
  10247.         ColumnTo = 0
  10248.       end
  10249.       item
  10250.         DisplayName = 'Command'
  10251.         StyleName = 'Params'
  10252.         TokenType = 2
  10253.         Expression = '\S+'
  10254.         ColumnFrom = 0
  10255.         ColumnTo = 0
  10256.       end>
  10257.     BlockRules = <
  10258.       item
  10259.         DisplayName = 'Key words'
  10260.         StyleName = 'Key words'
  10261.         BlockType = btTagDetect
  10262.         ConditionList = <
  10263.           item
  10264.             TagList.Strings = (
  10265.               'Arp'
  10266.               'Assoc'
  10267.               'At'
  10268.               'Atmadm'
  10269.               'Attrib'
  10270.               'Bootcfg'
  10271.               'Break'
  10272.               'Cacls'
  10273.               'call'
  10274.               'cd'
  10275.               'Change'
  10276.               'Chcp'
  10277.               'Chdir'
  10278.               'Chkdsk'
  10279.               'Chkntfs'
  10280.               'choice'
  10281.               'Cipher'
  10282.               'cls'
  10283.               'Cmd'
  10284.               'Cmstp'
  10285.               'Color'
  10286.               'Comp'
  10287.               'Compact'
  10288.               'Convert'
  10289.               'copy'
  10290.               'Cprofile'
  10291.               'CScript'
  10292.               'Date'
  10293.               'Defrag'
  10294.               'del'
  10295.               'Dir'
  10296.               'Diskcomp'
  10297.               'Diskcopy'
  10298.               'DiskPart'
  10299.               'do'
  10300.               'Doskey'
  10301.               'Driverquery'
  10302.               'echo'
  10303.               'echo.'
  10304.               'Endlocal'
  10305.               'errorlevel'
  10306.               'Eventcreate'
  10307.               'Eventquery'
  10308.               'Eventtriggers'
  10309.               'Evntcmd'
  10310.               'exist'
  10311.               'Exit'
  10312.               'Expand'
  10313.               'Fc'
  10314.               'Find'
  10315.               'Findstr'
  10316.               'Finger'
  10317.               'Flattemp'
  10318.               'for'
  10319.               'Format'
  10320.               'Fsutil'
  10321.               'Ftp'
  10322.               'Ftype'
  10323.               'Getmac'
  10324.               'goto'
  10325.               'Gpresult'
  10326.               'Gpupdate'
  10327.               'Graftabl'
  10328.               'Help'
  10329.               'Helpctr'
  10330.               'Hostname'
  10331.               'if'
  10332.               'in'
  10333.               'Ipconfig'
  10334.               'Ipseccmd'
  10335.               'Ipxroute'
  10336.               'Irftp'
  10337.               'Label'
  10338.               'Lodctr'
  10339.               'Logman'
  10340.               'Lpq'
  10341.               'Lpr'
  10342.               'Macfile'
  10343.               'md'
  10344.               'Mkdir'
  10345.               'Mmc'
  10346.               'Mode'
  10347.               'More'
  10348.               'Mountvol'
  10349.               'Move'
  10350.               'MS-DOS'
  10351.               'Msiexec'
  10352.               'Msinfo32'
  10353.               'Nbtstat'
  10354.               'Net'
  10355.               'Netsh'
  10356.               'Netstat'
  10357.               'not'
  10358.               'Nslookup'
  10359.               'Ntbackup'
  10360.               'Ntcmdprompt'
  10361.               'Ntsd'
  10362.               'OOpenfiles'
  10363.               'Pagefileconfig'
  10364.               'Path'
  10365.               'Pathping'
  10366.               'pause'
  10367.               'Pbadmin'
  10368.               'Pentnt'
  10369.               'Perfmon'
  10370.               'Ping'
  10371.               'Popd'
  10372.               'Print'
  10373.               'Prncnfg'
  10374.               'Prndrvr'
  10375.               'Prnjobs'
  10376.               'Prnmngr'
  10377.               'Prnport'
  10378.               'Prnqctl'
  10379.               'Prompt'
  10380.               'Pushd'
  10381.               'Query'
  10382.               'Rcp'
  10383.               'Recover'
  10384.               'Reg'
  10385.               'Regsvr32'
  10386.               'Relog'
  10387.               'Rem'
  10388.               'Rename'
  10389.               'Replace'
  10390.               'Resetsession'
  10391.               'Rexec'
  10392.               'Rmdir'
  10393.               'Route'
  10394.               'RRasdial'
  10395.               'Rsh'
  10396.               'Rsm'
  10397.               'Runas'
  10398.               'SC'
  10399.               'Schtasks'
  10400.               'Secedit'
  10401.               'set'
  10402.               'Setlocal'
  10403.               'Sfc'
  10404.               'shift'
  10405.               'Shutdown'
  10406.               'Sort'
  10407.               'Start'
  10408.               'Subst'
  10409.               'sys'
  10410.               'Systeminfo'
  10411.               'Taskkill'
  10412.               'Tasklist'
  10413.               'Tcmsetup'
  10414.               'TCP/IP'
  10415.               'Telnet'
  10416.               'Tftp'
  10417.               'Time'
  10418.               'Title'
  10419.               'Tracerpt'
  10420.               'Tracert'
  10421.               'Tree'
  10422.               'Type'
  10423.               'Typeperf'
  10424.               'Unlodctr'
  10425.               'Verify'
  10426.               'Vol'
  10427.               'Vssadmin'
  10428.               'VVer'
  10429.               'W32tm'
  10430.               'Winnt'
  10431.               'Winnt32'
  10432.               'WMIC'
  10433.               'Xcopy')
  10434.             TokenTypes = 4
  10435.             IgnoreCase = True
  10436.           end>
  10437.         HighlightPos = cpAny
  10438.         IgnoreAsParent = False
  10439.       end
  10440.       item
  10441.         DisplayName = 'std commands'
  10442.         Enabled = False
  10443.         StyleName = 'Commands'
  10444.         BlockType = btTagDetect
  10445.         ConditionList = <
  10446.           item
  10447.             TagList.Strings = (
  10448.               'cd'
  10449.               'copy'
  10450.               'del'
  10451.               'md'
  10452.               'sys')
  10453.             TokenTypes = 4
  10454.           end>
  10455.         HighlightPos = cpAny
  10456.         IgnoreAsParent = False
  10457.       end
  10458.       item
  10459.         DisplayName = 'echo start'
  10460.         StyleName = 'Echo'
  10461.         ConditionList = <
  10462.           item
  10463.             TagList.Strings = (
  10464.               'echo')
  10465.             TokenTypes = 32
  10466.             IgnoreCase = True
  10467.           end>
  10468.         BlockEnd = 'echo end'
  10469.         Highlight = True
  10470.         DisplayInTree = False
  10471.         DynHighlight = dhRange
  10472.         HighlightPos = cpAny
  10473.         IgnoreAsParent = False
  10474.       end
  10475.       item
  10476.         DisplayName = 'echo end'
  10477.         BlockName = 'echo start'
  10478.         StrictParent = True
  10479.         BlockType = btRangeEnd
  10480.         ConditionList = <
  10481.           item
  10482.             TokenTypes = 16
  10483.           end>
  10484.         HighlightPos = cpAny
  10485.         IgnoreAsParent = False
  10486.       end>
  10487.     CodeTemplates = <>
  10488.     SubAnalyzers = <>
  10489.     SampleText.Strings = (
  10490.       'rem MS-DOS batch file'
  10491.       'rem'
  10492.       '@echo off'
  10493.       'cls'
  10494.       'echo The command line is: %1 %2 %3 %4 %5'
  10495.       'rem'
  10496.       'rem now wait for the user ...'
  10497.       'pause'
  10498.       'copy c:\*.pas d:\'
  10499.       'if errorlevel 1 echo Error in copy action!')
  10500.     TokenTypeNames.Strings = (
  10501.       'Unknown'
  10502.       'Comment'
  10503.       'Identifier'
  10504.       'Label'
  10505.       'echo'
  10506.       'echo cmd')
  10507.     MarkedBlockStyle = 'Marked block'
  10508.     DefaultStyleName = 'Default'
  10509.     Extentions = 'bat'
  10510.     LexerName = 'Batch files'
  10511.     SkipSpaces = False
  10512.     LineComment = 'rem '
  10513.   end
  10514.   object SyntAnalyzer15: TLibSyntAnalyzer
  10515.     Formats = <
  10516.       item
  10517.         DisplayName = 'Default'
  10518.         Font.Charset = DEFAULT_CHARSET
  10519.         Font.Color = clWindowText
  10520.         Font.Height = -13
  10521.         Font.Name = 'Courier New'
  10522.         Font.Style = []
  10523.         FormatType = ftCustomFont
  10524.       end
  10525.       item
  10526.         DisplayName = 'Marked block'
  10527.         Font.Charset = DEFAULT_CHARSET
  10528.         Font.Color = clHighlightText
  10529.         Font.Height = -13
  10530.         Font.Name = 'Courier New'
  10531.         Font.Style = []
  10532.         BgColor = clHighlight
  10533.         FormatType = ftColor
  10534.       end
  10535.       item
  10536.         DisplayName = 'Modifiers'
  10537.         Font.Charset = DEFAULT_CHARSET
  10538.         Font.Color = clWindowText
  10539.         Font.Height = -13
  10540.         Font.Name = 'Courier New'
  10541.         Font.Style = [fsBold, fsUnderline]
  10542.       end
  10543.       item
  10544.         DisplayName = 'Key chars'
  10545.         Font.Charset = DEFAULT_CHARSET
  10546.         Font.Color = clBlue
  10547.         Font.Height = -13
  10548.         Font.Name = 'Courier New'
  10549.         Font.Style = [fsBold]
  10550.       end
  10551.       item
  10552.         DisplayName = 'block {}'
  10553.         Font.Charset = DEFAULT_CHARSET
  10554.         Font.Color = clWindowText
  10555.         Font.Height = -13
  10556.         Font.Name = 'Courier New'
  10557.         Font.Style = []
  10558.       end
  10559.       item
  10560.         DisplayName = 'block []'
  10561.         Font.Charset = DEFAULT_CHARSET
  10562.         Font.Color = clMaroon
  10563.         Font.Height = -13
  10564.         Font.Name = 'Courier New'
  10565.         Font.Style = [fsBold]
  10566.       end
  10567.       item
  10568.         DisplayName = 'Comment'
  10569.         Font.Charset = DEFAULT_CHARSET
  10570.         Font.Color = clRed
  10571.         Font.Height = -13
  10572.         Font.Name = 'Courier New'
  10573.         Font.Style = [fsItalic]
  10574.       end
  10575.       item
  10576.         DisplayName = 'Chars'
  10577.         Font.Charset = DEFAULT_CHARSET
  10578.         Font.Color = clWindowText
  10579.         Font.Height = -13
  10580.         Font.Name = 'Courier New'
  10581.         Font.Style = []
  10582.         BgColor = clLime
  10583.       end
  10584.       item
  10585.         DisplayName = 'Repeaters'
  10586.         Font.Charset = DEFAULT_CHARSET
  10587.         Font.Color = clNavy
  10588.         Font.Height = -13
  10589.         Font.Name = 'Courier New'
  10590.         Font.Style = [fsBold]
  10591.       end>
  10592.     TokenRules = <
  10593.       item
  10594.         DisplayName = 'Modifiers'
  10595.         StyleName = 'Modifiers'
  10596.         TokenType = 9
  10597.         Expression = '\(\?.+?\)'
  10598.         ColumnFrom = 0
  10599.         ColumnTo = 0
  10600.       end
  10601.       item
  10602.         DisplayName = 'Block {}'
  10603.         StyleName = 'block {}'
  10604.         Expression = '\{.+?\}'
  10605.         ColumnFrom = 0
  10606.         ColumnTo = 0
  10607.       end
  10608.       item
  10609.         DisplayName = 'Repeaters'
  10610.         StyleName = 'Repeaters'
  10611.         TokenType = 3
  10612.         Expression = '[\+\*\?]\??'
  10613.         ColumnFrom = 0
  10614.         ColumnTo = 0
  10615.       end
  10616.       item
  10617.         DisplayName = '[]'
  10618.         StyleName = 'block []'
  10619.         Expression = '[\[\]]'
  10620.         ColumnFrom = 0
  10621.         ColumnTo = 0
  10622.       end
  10623.       item
  10624.         DisplayName = 'Key chars'
  10625.         StyleName = 'Key chars'
  10626.         TokenType = 2
  10627.         Expression = '[\.\|\$\^]'
  10628.         ColumnFrom = 0
  10629.         ColumnTo = 0
  10630.       end
  10631.       item
  10632.         DisplayName = 'Key as char'
  10633.         StyleName = 'Chars'
  10634.         TokenType = 4
  10635.         Expression = '\\.'
  10636.         ColumnFrom = 0
  10637.         ColumnTo = 0
  10638.       end
  10639.       item
  10640.         DisplayName = 'Comment'
  10641.         StyleName = 'Comment'
  10642.         TokenType = 1
  10643.         Expression = '\#.*'
  10644.         ColumnFrom = 0
  10645.         ColumnTo = 0
  10646.       end
  10647.       item
  10648.         DisplayName = 'Text'
  10649.         StyleName = 'Chars'
  10650.         TokenType = 4
  10651.         Expression = '[^()\[\]{}+*?-|$^.]+'
  10652.         ColumnFrom = 0
  10653.         ColumnTo = 0
  10654.       end>
  10655.     BlockRules = <>
  10656.     CodeTemplates = <>
  10657.     SubAnalyzers = <>
  10658.     SampleText.Strings = (
  10659.       '# float definition example'
  10660.       ''
  10661.       '\d+\.?\d+e[\+\-]?\d+|\d+\.\d+')
  10662.     TokenTypeNames.Strings = (
  10663.       'Unknown'
  10664.       'Comment'
  10665.       'Identifier'
  10666.       'Symbol'
  10667.       'String'
  10668.       'Integer const'
  10669.       'Float const'
  10670.       'Hex const'
  10671.       'Char const'
  10672.       'Preprocessor')
  10673.     MarkedBlockStyle = 'Marked block'
  10674.     DefaultStyleName = 'Default'
  10675.     LexerName = 'Regular expressions'
  10676.   end
  10677.   object SyntAnal1: TLibSyntAnalyzer
  10678.     Formats = <
  10679.       item
  10680.         DisplayName = 'Default'
  10681.         Font.Charset = DEFAULT_CHARSET
  10682.         Font.Color = clWindowText
  10683.         Font.Height = -13
  10684.         Font.Name = 'Courier New'
  10685.         Font.Style = []
  10686.         FormatType = ftCustomFont
  10687.       end
  10688.       item
  10689.         DisplayName = 'Marked block'
  10690.         Font.Charset = DEFAULT_CHARSET
  10691.         Font.Color = clHighlightText
  10692.         Font.Height = -13
  10693.         Font.Name = 'Courier New'
  10694.         Font.Style = []
  10695.         BgColor = clHighlight
  10696.         FormatType = ftColor
  10697.       end
  10698.       item
  10699.         DisplayName = 'Symbol'
  10700.         Font.Charset = DEFAULT_CHARSET
  10701.         Font.Color = clMaroon
  10702.         Font.Height = -13
  10703.         Font.Name = 'Courier New'
  10704.         Font.Style = [fsBold]
  10705.       end
  10706.       item
  10707.         DisplayName = 'Number'
  10708.         Font.Charset = DEFAULT_CHARSET
  10709.         Font.Color = clNavy
  10710.         Font.Height = -13
  10711.         Font.Name = 'Courier New'
  10712.         Font.Style = [fsBold]
  10713.       end
  10714.       item
  10715.         DisplayName = 'String'
  10716.         Font.Charset = DEFAULT_CHARSET
  10717.         Font.Color = clBlue
  10718.         Font.Height = -13
  10719.         Font.Name = 'Courier New'
  10720.         Font.Style = []
  10721.       end
  10722.       item
  10723.         DisplayName = 'Identifier'
  10724.         Font.Charset = DEFAULT_CHARSET
  10725.         Font.Color = clWindowText
  10726.         Font.Height = -13
  10727.         Font.Name = 'Courier New'
  10728.         Font.Style = []
  10729.       end
  10730.       item
  10731.         DisplayName = 'Reserved word'
  10732.         Font.Charset = DEFAULT_CHARSET
  10733.         Font.Color = clWindowText
  10734.         Font.Height = -13
  10735.         Font.Name = 'Courier New'
  10736.         Font.Style = [fsBold]
  10737.       end
  10738.       item
  10739.         DisplayName = 'Comment'
  10740.         Font.Charset = DEFAULT_CHARSET
  10741.         Font.Color = clRed
  10742.         Font.Height = -13
  10743.         Font.Name = 'Courier New'
  10744.         Font.Style = [fsBold]
  10745.       end
  10746.       item
  10747.         DisplayName = 'Preprocessor'
  10748.         Font.Charset = DEFAULT_CHARSET
  10749.         Font.Color = clGreen
  10750.         Font.Height = -13
  10751.         Font.Name = 'Courier New'
  10752.         Font.Style = [fsItalic]
  10753.       end
  10754.       item
  10755.         DisplayName = 'Current block'
  10756.         Font.Charset = DEFAULT_CHARSET
  10757.         Font.Color = clHighlight
  10758.         Font.Height = -13
  10759.         Font.Name = 'Courier New'
  10760.         Font.Style = [fsBold]
  10761.         BgColor = clLime
  10762.         FormatType = ftColor
  10763.         BorderTypeLeft = blSolid
  10764.         BorderColorLeft = clSilver
  10765.         BorderTypeTop = blSolid
  10766.         BorderColorTop = clSilver
  10767.         BorderTypeRight = blSolid
  10768.         BorderColorRight = clSilver
  10769.         BorderTypeBottom = blSolid
  10770.         BorderColorBottom = clSilver
  10771.       end>
  10772.     TokenRules = <
  10773.       item
  10774.         DisplayName = 'Comment 1'
  10775.         StyleName = 'Comment'
  10776.         TokenType = 1
  10777.         Expression = '(?s)/\*.*?(\*/|\Z)'
  10778.         ColumnFrom = 0
  10779.         ColumnTo = 0
  10780.       end
  10781.       item
  10782.         DisplayName = 'Comment 2'
  10783.         StyleName = 'Comment'
  10784.         TokenType = 1
  10785.         Expression = '//.*'
  10786.         ColumnFrom = 0
  10787.         ColumnTo = 0
  10788.       end
  10789.       item
  10790.         DisplayName = 'Region Name'
  10791.         StyleName = 'Preprocessor'
  10792.         BlockName = 'Region header'
  10793.         TokenType = 10
  10794.         Expression = '.*'
  10795.         ColumnFrom = 0
  10796.         ColumnTo = 0
  10797.       end
  10798.       item
  10799.         DisplayName = 'String'
  10800.         StyleName = 'String'
  10801.         TokenType = 4
  10802.         Expression = '".*?("|$)'
  10803.         ColumnFrom = 0
  10804.         ColumnTo = 0
  10805.       end
  10806.       item
  10807.         DisplayName = 'Any name'
  10808.         StyleName = 'Identifier'
  10809.         TokenType = 2
  10810.         Expression = '[a-z_]\w*'
  10811.         ColumnFrom = 0
  10812.         ColumnTo = 0
  10813.       end
  10814.       item
  10815.         DisplayName = 'HEX'
  10816.         StyleName = 'Number'
  10817.         TokenType = 7
  10818.         Expression = '0x[\da-f]*'
  10819.         ColumnFrom = 0
  10820.         ColumnTo = 0
  10821.       end
  10822.       item
  10823.         DisplayName = 'Float'
  10824.         StyleName = 'Number'
  10825.         TokenType = 6
  10826.         Expression = '\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'\d+ \. \d+'
  10827.         ColumnFrom = 0
  10828.         ColumnTo = 0
  10829.       end
  10830.       item
  10831.         DisplayName = 'Integer'
  10832.         StyleName = 'Number'
  10833.         TokenType = 5
  10834.         Expression = '\d+'
  10835.         ColumnFrom = 0
  10836.         ColumnTo = 0
  10837.       end
  10838.       item
  10839.         DisplayName = 'Region'
  10840.         StyleName = 'Preprocessor'
  10841.         TokenType = 9
  10842.         Expression = '\#region'
  10843.         ColumnFrom = 0
  10844.         ColumnTo = 0
  10845.       end
  10846.       item
  10847.         DisplayName = 'Preprocessor'
  10848.         StyleName = 'Preprocessor'
  10849.         TokenType = 9
  10850.         Expression = '\#\w*'
  10851.         ColumnFrom = 0
  10852.         ColumnTo = 0
  10853.       end
  10854.       item
  10855.         DisplayName = 'Single symbol'
  10856.         StyleName = 'Symbol'
  10857.         TokenType = 3
  10858.         Expression = '[\{\}\(\)\[\],;\.]'
  10859.         ColumnFrom = 0
  10860.         ColumnTo = 0
  10861.       end
  10862.       item
  10863.         DisplayName = 'Symbol'
  10864.         StyleName = 'Symbol'
  10865.         TokenType = 3
  10866.         Expression = '[/\+\-\*:=<>&/\|\^!~]+'
  10867.         ColumnFrom = 0
  10868.         ColumnTo = 0
  10869.       end
  10870.       item
  10871.         DisplayName = 'Char'
  10872.         StyleName = 'String'
  10873.         TokenType = 8
  10874.         Expression = #39'.*?('#39'|$)'
  10875.         ColumnFrom = 0
  10876.         ColumnTo = 0
  10877.       end>
  10878.     BlockRules = <
  10879.       item
  10880.         DisplayName = 'Key words'
  10881.         StyleName = 'Reserved word'
  10882.         BlockType = btTagDetect
  10883.         ConditionList = <
  10884.           item
  10885.             TagList.Strings = (
  10886.               'abstract'
  10887.               'base'
  10888.               'bool'
  10889.               'break'
  10890.               'byte'
  10891.               'case'
  10892.               'catch'
  10893.               'char'
  10894.               'checked'
  10895.               'class'
  10896.               'const'
  10897.               'continue'
  10898.               'decimal'
  10899.               'default'
  10900.               'delegate'
  10901.               'do'
  10902.               'double'
  10903.               'else'
  10904.               'enum'
  10905.               'event'
  10906.               'explicit'
  10907.               'extern'
  10908.               'false'
  10909.               'finally'
  10910.               'fixed'
  10911.               'float'
  10912.               'for'
  10913.               'foreach'
  10914.               'get'
  10915.               'goto'
  10916.               'if'
  10917.               'implicit'
  10918.               'in'
  10919.               'int'
  10920.               'interface'
  10921.               'internal'
  10922.               'is'
  10923.               'lock'
  10924.               'long'
  10925.               'namespace'
  10926.               'new'
  10927.               'null'
  10928.               'object'
  10929.               'operator'
  10930.               'out'
  10931.               'override'
  10932.               'params'
  10933.               'private'
  10934.               'protected'
  10935.               'public'
  10936.               'readonly'
  10937.               'ref'
  10938.               'return'
  10939.               'sbyte'
  10940.               'sealed'
  10941.               'set'
  10942.               'short'
  10943.               'sizeof'
  10944.               'static'
  10945.               'string'
  10946.               'struct'
  10947.               'switch'
  10948.               'this'
  10949.               'throw'
  10950.               'true'
  10951.               'try'
  10952.               'typeof'
  10953.               'uint'
  10954.               'ulong'
  10955.               'unchecked'
  10956.               'unsafe'
  10957.               'ushort'
  10958.               'using'
  10959.               'virtual'
  10960.               'void'
  10961.               'while')
  10962.             TokenTypes = 4
  10963.           end>
  10964.         HighlightPos = cpAny
  10965.         IgnoreAsParent = False
  10966.       end
  10967.       item
  10968.         DisplayName = '#if'
  10969.         ConditionList = <
  10970.           item
  10971.             TagList.Strings = (
  10972.               '#if*'
  10973.               '#ifdef*'
  10974.               '#ifndef*')
  10975.             CondType = tcMask
  10976.             TokenTypes = 1024
  10977.           end>
  10978.         BlockEnd = '#endif'
  10979.         HighlightPos = cpAny
  10980.         IgnoreAsParent = False
  10981.       end
  10982.       item
  10983.         DisplayName = '#endif'
  10984.         BlockType = btRangeEnd
  10985.         ConditionList = <
  10986.           item
  10987.             TagList.Strings = (
  10988.               '#endif')
  10989.             TokenTypes = 1024
  10990.           end>
  10991.         HighlightPos = cpAny
  10992.         IgnoreAsParent = False
  10993.       end
  10994.       item
  10995.         DisplayName = 'function begin'
  10996.         BlockName = 'function begin'
  10997.         NotParent = True
  10998.         ConditionList = <
  10999.           item
  11000.             TagList.Strings = (
  11001.               '{')
  11002.             TokenTypes = 8
  11003.           end
  11004.           item
  11005.             TagList.Strings = (
  11006.               ')')
  11007.             TokenTypes = 8
  11008.           end
  11009.           item
  11010.             CondType = tcSkip
  11011.             TokenTypes = 12
  11012.           end
  11013.           item
  11014.             TagList.Strings = (
  11015.               '(')
  11016.             TokenTypes = 8
  11017.           end
  11018.           item
  11019.             TokenTypes = 4
  11020.           end
  11021.           item
  11022.             TagList.Strings = (
  11023.               'class')
  11024.             CondType = tcNotEqual
  11025.             TokenTypes = 4
  11026.           end>
  11027.         IdentIndex = -1
  11028.         BlockEnd = 'function end'
  11029.         RefToCondEnd = True
  11030.         HighlightPos = cpAny
  11031.         IgnoreAsParent = False
  11032.       end
  11033.       item
  11034.         DisplayName = 'Begin'
  11035.         StyleName = 'Current block'
  11036.         ConditionList = <
  11037.           item
  11038.             TagList.Strings = (
  11039.               '{')
  11040.             TokenTypes = 8
  11041.           end>
  11042.         BlockEnd = 'End'
  11043.         DisplayInTree = False
  11044.         DynHighlight = dhBound
  11045.         HighlightPos = cpRange
  11046.         DynSelectMin = True
  11047.         CollapseFmt = '{ ... }'
  11048.         IgnoreAsParent = False
  11049.       end
  11050.       item
  11051.         DisplayName = 'class'
  11052.         ConditionList = <
  11053.           item
  11054.             TagList.Strings = (
  11055.               'class')
  11056.             TokenTypes = 4
  11057.           end>
  11058.         IdentIndex = -1
  11059.         BlockEnd = 'end of class'
  11060.         HighlightPos = cpAny
  11061.         IgnoreAsParent = False
  11062.       end
  11063.       item
  11064.         DisplayName = 'namespace'
  11065.         ConditionList = <
  11066.           item
  11067.             TagList.Strings = (
  11068.               'namespace')
  11069.             TokenTypes = 4
  11070.           end>
  11071.         IdentIndex = -1
  11072.         BlockEnd = 'end of namespace'
  11073.         HighlightPos = cpAny
  11074.         IgnoreAsParent = False
  11075.       end
  11076.       item
  11077.         DisplayName = 'End'
  11078.         BlockName = 'Begin'
  11079.         BlockType = btRangeEnd
  11080.         ConditionList = <
  11081.           item
  11082.             TagList.Strings = (
  11083.               '}')
  11084.             TokenTypes = 8
  11085.           end>
  11086.         HighlightPos = cpAny
  11087.         IgnoreAsParent = False
  11088.       end
  11089.       item
  11090.         DisplayName = 'function end'
  11091.         BlockName = 'function begin'
  11092.         StrictParent = True
  11093.         BlockType = btRangeEnd
  11094.         ConditionList = <
  11095.           item
  11096.             TagList.Strings = (
  11097.               '}')
  11098.             TokenTypes = 8
  11099.           end>
  11100.         HighlightPos = cpAny
  11101.         IgnoreAsParent = False
  11102.       end
  11103.       item
  11104.         DisplayName = 'end of class'
  11105.         BlockName = 'class'
  11106.         StrictParent = True
  11107.         BlockType = btRangeEnd
  11108.         ConditionList = <
  11109.           item
  11110.             TagList.Strings = (
  11111.               '}')
  11112.             TokenTypes = 8
  11113.           end>
  11114.         HighlightPos = cpAny
  11115.         IgnoreAsParent = False
  11116.       end
  11117.       item
  11118.         DisplayName = 'end of namespace'
  11119.         BlockName = 'namespace'
  11120.         StrictParent = True
  11121.         BlockType = btRangeEnd
  11122.         ConditionList = <
  11123.           item
  11124.             TagList.Strings = (
  11125.               '}')
  11126.             TokenTypes = 8
  11127.           end>
  11128.         HighlightPos = cpAny
  11129.         IgnoreAsParent = False
  11130.       end
  11131.       item
  11132.         DisplayName = 'Block comment'
  11133.         BlockName = 'Block comment'
  11134.         NotParent = True
  11135.         ConditionList = <
  11136.           item
  11137.             TokenTypes = 2
  11138.           end>
  11139.         BlockEnd = 'Block comment end'
  11140.         DisplayInTree = False
  11141.         HighlightPos = cpAny
  11142.         CollapseFmt = '/* ... */'
  11143.         IgnoreAsParent = False
  11144.       end
  11145.       item
  11146.         DisplayName = 'Block comment end'
  11147.         BlockType = btRangeEnd
  11148.         ConditionList = <
  11149.           item
  11150.             CondType = tcNotEqual
  11151.             TokenTypes = 2
  11152.           end
  11153.           item
  11154.             TokenTypes = 2
  11155.           end>
  11156.         BlockOffset = 1
  11157.         HighlightPos = cpAny
  11158.         IgnoreAsParent = False
  11159.       end
  11160.       item
  11161.         DisplayName = '#Region begin'
  11162.         ConditionList = <
  11163.           item
  11164.             TagList.Strings = (
  11165.               '\#region')
  11166.             CondType = tcMask
  11167.             TokenTypes = 512
  11168.             IgnoreCase = True
  11169.           end>
  11170.         BlockEnd = '#End region'
  11171.         HighlightPos = cpAny
  11172.         CollapseFmt = '%s-1'
  11173.         IgnoreAsParent = False
  11174.       end
  11175.       item
  11176.         DisplayName = '#End region'
  11177.         BlockType = btRangeEnd
  11178.         ConditionList = <
  11179.           item
  11180.             TagList.Strings = (
  11181.               '#endregion')
  11182.             TokenTypes = 512
  11183.             IgnoreCase = True
  11184.           end>
  11185.         HighlightPos = cpAny
  11186.         IgnoreAsParent = False
  11187.       end
  11188.       item
  11189.         DisplayName = '('
  11190.         StyleName = 'Current block'
  11191.         ConditionList = <
  11192.           item
  11193.             TagList.Strings = (
  11194.               '(')
  11195.             TokenTypes = 8
  11196.           end>
  11197.         BlockEnd = ')'
  11198.         NotCollapsed = True
  11199.         DisplayInTree = False
  11200.         DynHighlight = dhBound
  11201.         HighlightPos = cpBoundTagBegin
  11202.         DynSelectMin = True
  11203.         IgnoreAsParent = False
  11204.       end
  11205.       item
  11206.         DisplayName = ')'
  11207.         BlockType = btRangeEnd
  11208.         ConditionList = <
  11209.           item
  11210.             TagList.Strings = (
  11211.               ')')
  11212.             TokenTypes = 8
  11213.           end>
  11214.         HighlightPos = cpAny
  11215.         IgnoreAsParent = False
  11216.       end
  11217.       item
  11218.         DisplayName = '['
  11219.         StyleName = 'Current block'
  11220.         ConditionList = <
  11221.           item
  11222.             TagList.Strings = (
  11223.               '[')
  11224.             TokenTypes = 8
  11225.           end>
  11226.         BlockEnd = ']'
  11227.         DisplayInTree = False
  11228.         DynHighlight = dhBound
  11229.         HighlightPos = cpBoundTagBegin
  11230.         DynSelectMin = True
  11231.         CollapseFmt = '[ ... ]'
  11232.         IgnoreAsParent = False
  11233.       end
  11234.       item
  11235.         DisplayName = ']'
  11236.         BlockType = btRangeEnd
  11237.         ConditionList = <
  11238.           item
  11239.             TagList.Strings = (
  11240.               ']')
  11241.             TokenTypes = 8
  11242.           end>
  11243.         HighlightPos = cpAny
  11244.         IgnoreAsParent = False
  11245.       end
  11246.       item
  11247.         DisplayName = 'Region header'
  11248.         ConditionList = <
  11249.           item
  11250.             TagList.Strings = (
  11251.               '#region')
  11252.             TokenTypes = 512
  11253.             IgnoreCase = True
  11254.           end>
  11255.         HighlightPos = cpAny
  11256.         IgnoreAsParent = False
  11257.       end
  11258.       item
  11259.         DisplayName = 'Region header end'
  11260.         BlockType = btRangeEnd
  11261.         ConditionList = <
  11262.           item
  11263.             TokenTypes = 1024
  11264.           end>
  11265.         BlockEnd = 'Region header'
  11266.         HighlightPos = cpAny
  11267.         IgnoreAsParent = False
  11268.       end>
  11269.     CodeTemplates = <>
  11270.     SubAnalyzers = <
  11271.       item
  11272.         DisplayName = 'XML doc'
  11273.         Enabled = False
  11274.         StartExpression = '///'
  11275.         EndExpression = '(?s)(\r\n | ///)'
  11276.         SyntAnalyzer = SyntAnal22
  11277.       end>
  11278.     SampleText.Strings = (
  11279.       '// C# syntax highlighting '
  11280.       'public class Stack'
  11281.       '{'
  11282.       '  private Node first = null;'
  11283.       '  public bool Empty {'
  11284.       '    get {'
  11285.       '      return (first == null);'
  11286.       '    }'
  11287.       '  }'
  11288.       '  public object Pop() {'
  11289.       '    if (first == null)'
  11290.       '      throw new Exception("Can'#39't Pop from an empty Stack.");'
  11291.       '    else {'
  11292.       '      object temp = first.Value;'
  11293.       '      first = first.Next;'
  11294.       '      return temp;'
  11295.       '    }'
  11296.       '  }'
  11297.       '}')
  11298.     TokenTypeNames.Strings = (
  11299.       'Unknown'
  11300.       'Comment'
  11301.       'Identifier'
  11302.       'Symbol'
  11303.       'String'
  11304.       'Integer const'
  11305.       'Float const'
  11306.       'Hex const'
  11307.       'Char const'
  11308.       'Preprocessor'
  11309.       'Region name')
  11310.     MarkedBlockStyle = 'Marked block'
  11311.     DefaultStyleName = 'Default'
  11312.     Extentions = 'c cpp h cs'
  11313.     LexerName = 'C#'
  11314.     LineComment = '//'
  11315.   end
  11316.   object SyntAnal4: TLibSyntAnalyzer
  11317.     Formats = <
  11318.       item
  11319.         DisplayName = 'Default'
  11320.         Font.Charset = DEFAULT_CHARSET
  11321.         Font.Color = clWindowText
  11322.         Font.Height = -13
  11323.         Font.Name = 'Courier New'
  11324.         Font.Style = []
  11325.         FormatType = ftCustomFont
  11326.       end
  11327.       item
  11328.         DisplayName = 'Marked block'
  11329.         Font.Charset = DEFAULT_CHARSET
  11330.         Font.Color = clHighlightText
  11331.         Font.Height = -13
  11332.         Font.Name = 'Courier New'
  11333.         Font.Style = []
  11334.         BgColor = clHighlight
  11335.         FormatType = ftColor
  11336.       end>
  11337.     TokenRules = <>
  11338.     BlockRules = <>
  11339.     CodeTemplates = <>
  11340.     SubAnalyzers = <
  11341.       item
  11342.         DisplayName = 'XML'
  11343.         SyntAnalyzer = SyntAnal22
  11344.         FromTextBegin = True
  11345.         ToTextEnd = True
  11346.       end
  11347.       item
  11348.         DisplayName = 'Options'
  11349.         AlwaysEnabled = True
  11350.         StartExpression = '<IDEOPTIONS>'#13#10
  11351.         EndExpression = '</IDEOPTIONS>'#13#10
  11352.         SyntAnalyzer = SyntAnalyzer7
  11353.       end>
  11354.     TokenTypeNames.Strings = (
  11355.       'Unknown'
  11356.       'Comment'
  11357.       'Identifier'
  11358.       'Symbol'
  11359.       'String'
  11360.       'Integer const'
  11361.       'Float const'
  11362.       'Hex const'
  11363.       'Char const'
  11364.       'Preprocessor')
  11365.     MarkedBlockStyle = 'Marked block'
  11366.     DefaultStyleName = 'Default'
  11367.     Extentions = 'bpk bpr'
  11368.     LexerName = 'C++Builder project'
  11369.   end
  11370.   object SyntAnal5: TLibSyntAnalyzer
  11371.     Formats = <
  11372.       item
  11373.         DisplayName = 'Default'
  11374.         Font.Charset = DEFAULT_CHARSET
  11375.         Font.Color = clWindowText
  11376.         Font.Height = -13
  11377.         Font.Name = 'Courier New'
  11378.         Font.Style = []
  11379.         FormatType = ftCustomFont
  11380.       end
  11381.       item
  11382.         DisplayName = 'Marked block'
  11383.         Font.Charset = DEFAULT_CHARSET
  11384.         Font.Color = clHighlightText
  11385.         Font.Height = -13
  11386.         Font.Name = 'Courier New'
  11387.         Font.Style = []
  11388.         BgColor = clHighlight
  11389.         FormatType = ftColor
  11390.       end
  11391.       item
  11392.         DisplayName = 'Symbol'
  11393.         Font.Charset = DEFAULT_CHARSET
  11394.         Font.Color = clMaroon
  11395.         Font.Height = -13
  11396.         Font.Name = 'Courier New'
  11397.         Font.Style = [fsBold]
  11398.       end
  11399.       item
  11400.         DisplayName = 'Number'
  11401.         Font.Charset = DEFAULT_CHARSET
  11402.         Font.Color = clNavy
  11403.         Font.Height = -13
  11404.         Font.Name = 'Courier New'
  11405.         Font.Style = [fsBold]
  11406.       end
  11407.       item
  11408.         DisplayName = 'String'
  11409.         Font.Charset = DEFAULT_CHARSET
  11410.         Font.Color = clBlue
  11411.         Font.Height = -13
  11412.         Font.Name = 'Courier New'
  11413.         Font.Style = []
  11414.       end
  11415.       item
  11416.         DisplayName = 'Identifier'
  11417.         Font.Charset = DEFAULT_CHARSET
  11418.         Font.Color = clWindowText
  11419.         Font.Height = -13
  11420.         Font.Name = 'Courier New'
  11421.         Font.Style = []
  11422.       end
  11423.       item
  11424.         DisplayName = 'Reserved word'
  11425.         Font.Charset = DEFAULT_CHARSET
  11426.         Font.Color = clWindowText
  11427.         Font.Height = -13
  11428.         Font.Name = 'Courier New'
  11429.         Font.Style = [fsBold]
  11430.       end
  11431.       item
  11432.         DisplayName = 'Comment'
  11433.         Font.Charset = DEFAULT_CHARSET
  11434.         Font.Color = clMaroon
  11435.         Font.Height = -13
  11436.         Font.Name = 'Courier New'
  11437.         Font.Style = [fsItalic]
  11438.       end
  11439.       item
  11440.         DisplayName = 'Preprocessor'
  11441.         Font.Charset = DEFAULT_CHARSET
  11442.         Font.Color = clGreen
  11443.         Font.Height = -13
  11444.         Font.Name = 'Courier New'
  11445.         Font.Style = [fsItalic]
  11446.       end
  11447.       item
  11448.         DisplayName = 'Current block'
  11449.         Font.Charset = RUSSIAN_CHARSET
  11450.         Font.Color = clMaroon
  11451.         Font.Height = -13
  11452.         Font.Name = 'Courier New'
  11453.         Font.Style = [fsBold]
  11454.         BgColor = 13369046
  11455.         FormatType = ftColor
  11456.         BorderTypeLeft = blSolid
  11457.         BorderColorLeft = clGray
  11458.         BorderTypeTop = blSolid
  11459.         BorderColorTop = clGray
  11460.         BorderTypeRight = blSolid
  11461.         BorderColorRight = clGray
  11462.         BorderTypeBottom = blSolid
  11463.         BorderColorBottom = clGray
  11464.       end
  11465.       item
  11466.         DisplayName = 'Current function'
  11467.         Font.Charset = RUSSIAN_CHARSET
  11468.         Font.Color = clMaroon
  11469.         Font.Height = -13
  11470.         Font.Name = 'Courier New'
  11471.         Font.Style = []
  11472.         BgColor = 16772332
  11473.         FormatType = ftBackGround
  11474.         MultiLineBorder = True
  11475.       end>
  11476.     TokenRules = <
  11477.       item
  11478.         DisplayName = 'Comment 1'
  11479.         StyleName = 'Comment'
  11480.         TokenType = 1
  11481.         Expression = '(?s)/\*.*?(\*/|\Z)'
  11482.         ColumnFrom = 0
  11483.         ColumnTo = 0
  11484.       end
  11485.       item
  11486.         DisplayName = 'Comment 2'
  11487.         StyleName = 'Comment'
  11488.         TokenType = 1
  11489.         Expression = '//.*'
  11490.         ColumnFrom = 0
  11491.         ColumnTo = 0
  11492.       end
  11493.       item
  11494.         DisplayName = 'String'
  11495.         StyleName = 'String'
  11496.         TokenType = 4
  11497.         Expression = '".*?("|$)'
  11498.         ColumnFrom = 0
  11499.         ColumnTo = 0
  11500.       end
  11501.       item
  11502.         DisplayName = 'Any name'
  11503.         StyleName = 'Identifier'
  11504.         TokenType = 2
  11505.         Expression = '[a-z_]\w*'
  11506.         ColumnFrom = 0
  11507.         ColumnTo = 0
  11508.       end
  11509.       item
  11510.         DisplayName = 'HEX'
  11511.         StyleName = 'Number'
  11512.         TokenType = 7
  11513.         Expression = '0x[\da-f]*'
  11514.         ColumnFrom = 0
  11515.         ColumnTo = 0
  11516.       end
  11517.       item
  11518.         DisplayName = 'Float'
  11519.         StyleName = 'Number'
  11520.         TokenType = 6
  11521.         Expression = '\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'\d+ \. \d+'
  11522.         ColumnFrom = 0
  11523.         ColumnTo = 0
  11524.       end
  11525.       item
  11526.         DisplayName = 'Integer'
  11527.         StyleName = 'Number'
  11528.         TokenType = 5
  11529.         Expression = '\d+'
  11530.         ColumnFrom = 0
  11531.         ColumnTo = 0
  11532.       end
  11533.       item
  11534.         DisplayName = 'Single symbol'
  11535.         StyleName = 'Symbol'
  11536.         TokenType = 3
  11537.         Expression = '[\{\}\(\)\[\],;\.]'
  11538.         ColumnFrom = 0
  11539.         ColumnTo = 0
  11540.       end
  11541.       item
  11542.         DisplayName = 'Symbol'
  11543.         StyleName = 'Symbol'
  11544.         TokenType = 3
  11545.         Expression = '[/\+\-\*:=<>&/\|\^~!]+'
  11546.         ColumnFrom = 0
  11547.         ColumnTo = 0
  11548.       end>
  11549.     BlockRules = <
  11550.       item
  11551.         DisplayName = 'Key words'
  11552.         StyleName = 'Reserved word'
  11553.         BlockType = btTagDetect
  11554.         ConditionList = <
  11555.           item
  11556.             TagList.Strings = (
  11557.               'abstract'
  11558.               'boolean'
  11559.               'break'
  11560.               'byte'
  11561.               'case'
  11562.               'catch'
  11563.               'char'
  11564.               'class'
  11565.               'const'
  11566.               'continue'
  11567.               'default'
  11568.               'do'
  11569.               'double'
  11570.               'else'
  11571.               'extends'
  11572.               'false'
  11573.               'final'
  11574.               'finally'
  11575.               'float'
  11576.               'for'
  11577.               'goto'
  11578.               'if'
  11579.               'implements'
  11580.               'import'
  11581.               'instanceof'
  11582.               'int'
  11583.               'interface'
  11584.               'long'
  11585.               'native'
  11586.               'new'
  11587.               'null'
  11588.               'package'
  11589.               'private'
  11590.               'protected'
  11591.               'public'
  11592.               'return'
  11593.               'short'
  11594.               'static'
  11595.               'string'
  11596.               'super'
  11597.               'switch'
  11598.               'synchronized'
  11599.               'this'
  11600.               'throw'
  11601.               'throws'
  11602.               'transient'
  11603.               'true'
  11604.               'try'
  11605.               'void'
  11606.               'volatile'
  11607.               'while')
  11608.             TokenTypes = 4
  11609.             IgnoreCase = True
  11610.           end>
  11611.         HighlightPos = cpAny
  11612.         IgnoreAsParent = False
  11613.       end
  11614.       item
  11615.         DisplayName = 'End'
  11616.         BlockType = btRangeEnd
  11617.         ConditionList = <
  11618.           item
  11619.             TagList.Strings = (
  11620.               '}')
  11621.             TokenTypes = 8
  11622.           end>
  11623.         HighlightPos = cpAny
  11624.         IgnoreAsParent = False
  11625.       end
  11626.       item
  11627.         DisplayName = ')'
  11628.         BlockType = btRangeEnd
  11629.         ConditionList = <
  11630.           item
  11631.             TagList.Strings = (
  11632.               ')')
  11633.             TokenTypes = 8
  11634.           end>
  11635.         HighlightPos = cpAny
  11636.         IgnoreAsParent = False
  11637.       end
  11638.       item
  11639.         DisplayName = 'function begin'
  11640.         StyleName = 'Current function'
  11641.         BlockName = 'class start'
  11642.         StrictParent = True
  11643.         ConditionList = <
  11644.           item
  11645.             TagList.Strings = (
  11646.               ')')
  11647.             TokenTypes = 8
  11648.           end
  11649.           item
  11650.             CondType = tcSkip
  11651.           end
  11652.           item
  11653.             TagList.Strings = (
  11654.               '(')
  11655.             TokenTypes = 8
  11656.           end
  11657.           item
  11658.             TokenTypes = 4
  11659.           end
  11660.           item
  11661.             TokenTypes = 4
  11662.           end>
  11663.         IdentIndex = 1
  11664.         BlockEnd = 'function end'
  11665.         Highlight = True
  11666.         NameFmt = '%s-1'
  11667.         RefToCondEnd = True
  11668.         DynHighlight = dhRange
  11669.         HighlightPos = cpRange
  11670.         CollapseFmt = '%s0 %s-1() { ... }'
  11671.         IgnoreAsParent = False
  11672.       end
  11673.       item
  11674.         DisplayName = 'function end'
  11675.         BlockName = 'function begin'
  11676.         StrictParent = True
  11677.         BlockType = btRangeEnd
  11678.         ConditionList = <
  11679.           item
  11680.             TagList.Strings = (
  11681.               '}')
  11682.             TokenTypes = 8
  11683.           end>
  11684.         HighlightPos = cpAny
  11685.         IgnoreAsParent = False
  11686.       end
  11687.       item
  11688.         DisplayName = 'class start'
  11689.         ConditionList = <
  11690.           item
  11691.             TagList.Strings = (
  11692.               '{')
  11693.             TokenTypes = 8
  11694.             IgnoreCase = True
  11695.           end
  11696.           item
  11697.             CondType = tcSkip
  11698.             TokenTypes = 4
  11699.           end
  11700.           item
  11701.             TagList.Strings = (
  11702.               'class')
  11703.             TokenTypes = 4
  11704.           end>
  11705.         BlockEnd = 'End'
  11706.         NameFmt = '%s0 %s-1'
  11707.         RefToCondEnd = True
  11708.         HighlightPos = cpAny
  11709.         CancelNextRules = True
  11710.         CollapseFmt = '%s0 %s-1 { ... }'
  11711.         IgnoreAsParent = False
  11712.       end
  11713.       item
  11714.         DisplayName = 'Begin'
  11715.         StyleName = 'Current block'
  11716.         ConditionList = <
  11717.           item
  11718.             TagList.Strings = (
  11719.               '{')
  11720.             TokenTypes = 8
  11721.           end>
  11722.         IdentIndex = 1
  11723.         BlockEnd = 'End'
  11724.         DisplayInTree = False
  11725.         DynHighlight = dhBound
  11726.         HighlightPos = cpRange
  11727.         DynSelectMin = True
  11728.         CollapseFmt = '{ ... }'
  11729.         IgnoreAsParent = False
  11730.       end
  11731.       item
  11732.         DisplayName = 'Block comment'
  11733.         BlockName = 'Block comment'
  11734.         NotParent = True
  11735.         ConditionList = <
  11736.           item
  11737.             TokenTypes = 2
  11738.           end>
  11739.         BlockEnd = 'Block comment end'
  11740.         DisplayInTree = False
  11741.         HighlightPos = cpAny
  11742.         CollapseFmt = '/* ... */'
  11743.         IgnoreAsParent = False
  11744.       end
  11745.       item
  11746.         DisplayName = 'Block comment end'
  11747.         BlockType = btRangeEnd
  11748.         ConditionList = <
  11749.           item
  11750.             CondType = tcNotEqual
  11751.             TokenTypes = 2
  11752.           end
  11753.           item
  11754.             TokenTypes = 2
  11755.           end>
  11756.         BlockOffset = 1
  11757.         HighlightPos = cpAny
  11758.         IgnoreAsParent = False
  11759.       end
  11760.       item
  11761.         DisplayName = '('
  11762.         StyleName = 'Current block'
  11763.         ConditionList = <
  11764.           item
  11765.             TagList.Strings = (
  11766.               '(')
  11767.             TokenTypes = 8
  11768.           end>
  11769.         BlockEnd = ')'
  11770.         NotCollapsed = True
  11771.         DisplayInTree = False
  11772.         DynHighlight = dhBound
  11773.         HighlightPos = cpBoundTagBegin
  11774.         DynSelectMin = True
  11775.         IgnoreAsParent = False
  11776.       end
  11777.       item
  11778.         DisplayName = '['
  11779.         StyleName = 'Current block'
  11780.         ConditionList = <
  11781.           item
  11782.             TagList.Strings = (
  11783.               '[')
  11784.             TokenTypes = 8
  11785.           end>
  11786.         BlockEnd = ']'
  11787.         NotCollapsed = True
  11788.         DisplayInTree = False
  11789.         DynHighlight = dhBound
  11790.         HighlightPos = cpBoundTagBegin
  11791.         DynSelectMin = True
  11792.         IgnoreAsParent = False
  11793.       end
  11794.       item
  11795.         DisplayName = ']'
  11796.         BlockType = btRangeEnd
  11797.         ConditionList = <
  11798.           item
  11799.             TagList.Strings = (
  11800.               ']')
  11801.             TokenTypes = 8
  11802.           end>
  11803.         HighlightPos = cpAny
  11804.         IgnoreAsParent = False
  11805.       end>
  11806.     CodeTemplates = <>
  11807.     SubAnalyzers = <>
  11808.     SampleText.Strings = (
  11809.       '/* Java syntax highlighting */'
  11810.       'import java.util.*;'
  11811.       ''
  11812.       '/** Example class */'
  11813.       'public class Sample {'
  11814.       '  public static void main(String[] args) {'
  11815.       '    int i = 0;'
  11816.       '    for(i = 0; i < 10; i++)'
  11817.       '      System.out.println("Hello world");'
  11818.       '  }'
  11819.       '}')
  11820.     TokenTypeNames.Strings = (
  11821.       'Unknown'
  11822.       'Comment'
  11823.       'Identifier'
  11824.       'Symbol'
  11825.       'String'
  11826.       'Integer const'
  11827.       'Float const'
  11828.       'Hex const'
  11829.       'Char const'
  11830.       'Preprocessor'
  11831.       'keyword')
  11832.     MarkedBlockStyle = 'Marked block'
  11833.     DefaultStyleName = 'Default'
  11834.     Extentions = 'java jav'
  11835.     LexerName = 'Java Builder'
  11836.   end
  11837.   object SyntAnal6: TLibSyntAnalyzer
  11838.     Formats = <
  11839.       item
  11840.         DisplayName = 'Default'
  11841.         Font.Charset = DEFAULT_CHARSET
  11842.         Font.Color = clWindowText
  11843.         Font.Height = -13
  11844.         Font.Name = 'Courier New'
  11845.         Font.Style = []
  11846.         FormatType = ftCustomFont
  11847.       end
  11848.       item
  11849.         DisplayName = 'Marked block'
  11850.         Font.Charset = DEFAULT_CHARSET
  11851.         Font.Color = clHighlightText
  11852.         Font.Height = -13
  11853.         Font.Name = 'Courier New'
  11854.         Font.Style = []
  11855.         BgColor = clHighlight
  11856.         FormatType = ftColor
  11857.       end
  11858.       item
  11859.         DisplayName = 'Symbol'
  11860.         Font.Charset = DEFAULT_CHARSET
  11861.         Font.Color = clMaroon
  11862.         Font.Height = -13
  11863.         Font.Name = 'Courier New'
  11864.         Font.Style = [fsBold]
  11865.       end
  11866.       item
  11867.         DisplayName = 'Number'
  11868.         Font.Charset = DEFAULT_CHARSET
  11869.         Font.Color = clNavy
  11870.         Font.Height = -13
  11871.         Font.Name = 'Courier New'
  11872.         Font.Style = [fsBold]
  11873.       end
  11874.       item
  11875.         DisplayName = 'String'
  11876.         Font.Charset = DEFAULT_CHARSET
  11877.         Font.Color = clBlue
  11878.         Font.Height = -13
  11879.         Font.Name = 'Courier New'
  11880.         Font.Style = []
  11881.       end
  11882.       item
  11883.         DisplayName = 'Identifier'
  11884.         Font.Charset = DEFAULT_CHARSET
  11885.         Font.Color = clWindowText
  11886.         Font.Height = -13
  11887.         Font.Name = 'Courier New'
  11888.         Font.Style = []
  11889.       end
  11890.       item
  11891.         DisplayName = 'Reserved word'
  11892.         Font.Charset = DEFAULT_CHARSET
  11893.         Font.Color = clWindowText
  11894.         Font.Height = -13
  11895.         Font.Name = 'Courier New'
  11896.         Font.Style = [fsBold]
  11897.       end
  11898.       item
  11899.         DisplayName = 'Comment'
  11900.         Font.Charset = DEFAULT_CHARSET
  11901.         Font.Color = clRed
  11902.         Font.Height = -13
  11903.         Font.Name = 'Courier New'
  11904.         Font.Style = [fsBold]
  11905.       end
  11906.       item
  11907.         DisplayName = 'Preprocessor'
  11908.         Font.Charset = DEFAULT_CHARSET
  11909.         Font.Color = clGreen
  11910.         Font.Height = -13
  11911.         Font.Name = 'Courier New'
  11912.         Font.Style = [fsItalic]
  11913.       end>
  11914.     TokenRules = <
  11915.       item
  11916.         DisplayName = 'Comment 1'
  11917.         StyleName = 'Comment'
  11918.         TokenType = 1
  11919.         Expression = '(?s)/\*.*?(\*/|\Z)'
  11920.         ColumnFrom = 0
  11921.         ColumnTo = 0
  11922.       end
  11923.       item
  11924.         DisplayName = 'Comment 2'
  11925.         StyleName = 'Comment'
  11926.         TokenType = 1
  11927.         Expression = '//.*'
  11928.         ColumnFrom = 0
  11929.         ColumnTo = 0
  11930.       end
  11931.       item
  11932.         DisplayName = 'String'
  11933.         StyleName = 'String'
  11934.         TokenType = 4
  11935.         Expression = '".*?("|$)'
  11936.         ColumnFrom = 0
  11937.         ColumnTo = 0
  11938.       end
  11939.       item
  11940.         DisplayName = 'Any name'
  11941.         StyleName = 'Identifier'
  11942.         TokenType = 2
  11943.         Expression = '[a-z_]\w*'
  11944.         ColumnFrom = 0
  11945.         ColumnTo = 0
  11946.       end
  11947.       item
  11948.         DisplayName = 'HEX'
  11949.         StyleName = 'Number'
  11950.         TokenType = 7
  11951.         Expression = '0x[\da-f]*'
  11952.         ColumnFrom = 0
  11953.         ColumnTo = 0
  11954.       end
  11955.       item
  11956.         DisplayName = 'Float'
  11957.         StyleName = 'Number'
  11958.         TokenType = 6
  11959.         Expression = '\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'\d+ \. \d+'
  11960.         ColumnFrom = 0
  11961.         ColumnTo = 0
  11962.       end
  11963.       item
  11964.         DisplayName = 'Integer'
  11965.         StyleName = 'Number'
  11966.         TokenType = 5
  11967.         Expression = '\d+'
  11968.         ColumnFrom = 0
  11969.         ColumnTo = 0
  11970.       end
  11971.       item
  11972.         DisplayName = 'Single symbol'
  11973.         StyleName = 'Symbol'
  11974.         TokenType = 3
  11975.         Expression = '[\{\}\(\)\[\],;\.]'
  11976.         ColumnFrom = 0
  11977.         ColumnTo = 0
  11978.       end
  11979.       item
  11980.         DisplayName = 'Symbol'
  11981.         StyleName = 'Symbol'
  11982.         TokenType = 3
  11983.         Expression = '[/\+\-\*:=<>&/\|\^~!]+'
  11984.         ColumnFrom = 0
  11985.         ColumnTo = 0
  11986.       end>
  11987.     BlockRules = <
  11988.       item
  11989.         DisplayName = 'Key words'
  11990.         StyleName = 'Reserved word'
  11991.         BlockType = btTagDetect
  11992.         ConditionList = <
  11993.           item
  11994.             TagList.Strings = (
  11995.               'break'
  11996.               'case'
  11997.               'catch'
  11998.               'class'
  11999.               'const'
  12000.               'continue'
  12001.               'debugger'
  12002.               'default'
  12003.               'delete'
  12004.               'do'
  12005.               'else'
  12006.               'enum'
  12007.               'export'
  12008.               'extends'
  12009.               'false'
  12010.               'finally'
  12011.               'for'
  12012.               'function'
  12013.               'if'
  12014.               'import'
  12015.               'in'
  12016.               'new'
  12017.               'null'
  12018.               'return'
  12019.               'super'
  12020.               'switch'
  12021.               'this'
  12022.               'throw'
  12023.               'true'
  12024.               'try'
  12025.               'typeof'
  12026.               'var'
  12027.               'void'
  12028.               'while'
  12029.               'with')
  12030.             TokenTypes = 4
  12031.           end>
  12032.         HighlightPos = cpAny
  12033.         IgnoreAsParent = False
  12034.       end
  12035.       item
  12036.         DisplayName = 'End'
  12037.         BlockType = btRangeEnd
  12038.         ConditionList = <
  12039.           item
  12040.             TagList.Strings = (
  12041.               '}')
  12042.             TokenTypes = 8
  12043.           end>
  12044.         HighlightPos = cpAny
  12045.         IgnoreAsParent = False
  12046.       end
  12047.       item
  12048.         DisplayName = 'Begin'
  12049.         ConditionList = <
  12050.           item
  12051.             TagList.Strings = (
  12052.               '{')
  12053.             TokenTypes = 8
  12054.           end>
  12055.         IdentIndex = 1
  12056.         BlockEnd = 'End'
  12057.         DisplayInTree = False
  12058.         HighlightPos = cpAny
  12059.         IgnoreAsParent = False
  12060.       end
  12061.       item
  12062.         DisplayName = 'class function'
  12063.         ConditionList = <
  12064.           item
  12065.             TagList.Strings = (
  12066.               'function')
  12067.             TokenTypes = 4
  12068.             IgnoreCase = True
  12069.           end
  12070.           item
  12071.             TagList.Strings = (
  12072.               '=')
  12073.             TokenTypes = 8
  12074.           end
  12075.           item
  12076.             TokenTypes = 4
  12077.           end
  12078.           item
  12079.             TagList.Strings = (
  12080.               '.')
  12081.             TokenTypes = 8
  12082.           end
  12083.           item
  12084.             TagList.Strings = (
  12085.               'prototype')
  12086.             TokenTypes = 4
  12087.             IgnoreCase = True
  12088.           end
  12089.           item
  12090.             TagList.Strings = (
  12091.               '.')
  12092.             TokenTypes = 8
  12093.           end
  12094.           item
  12095.             TokenTypes = 4
  12096.           end>
  12097.         BlockEnd = 'function end'
  12098.         NameFmt = '%s-4%sz-7'
  12099.         GroupFmt = '%s0()'
  12100.         RefToCondEnd = True
  12101.         HighlightPos = cpAny
  12102.         CollapseFmt = '%s-6  %s0.%s-4%sz-7'
  12103.         IgnoreAsParent = False
  12104.       end
  12105.       item
  12106.         DisplayName = 'function start'
  12107.         ConditionList = <
  12108.           item
  12109.             TagList.Strings = (
  12110.               'function')
  12111.             TokenTypes = 4
  12112.           end
  12113.           item
  12114.             TagList.Strings = (
  12115.               '=')
  12116.             CondType = tcNotEqual
  12117.             TokenTypes = 8
  12118.           end>
  12119.         BlockEnd = 'function end'
  12120.         NameFmt = '%sz-1'
  12121.         HighlightPos = cpAny
  12122.         CollapseFmt = '%s0 %sz-1'
  12123.         IgnoreAsParent = False
  12124.       end
  12125.       item
  12126.         DisplayName = 'function end'
  12127.         BlockType = btRangeEnd
  12128.         ConditionList = <
  12129.           item
  12130.             TagList.Strings = (
  12131.               '}')
  12132.             TokenTypes = 8
  12133.           end>
  12134.         HighlightPos = cpAny
  12135.         IgnoreAsParent = False
  12136.       end>
  12137.     CodeTemplates = <>
  12138.     SubAnalyzers = <>
  12139.     SampleText.Strings = (
  12140.       ''
  12141.       '// example function'
  12142.       'function SetEnabled(A,count)'
  12143.       '{'
  12144.       '  for(i= 0; i< count;i++)'
  12145.       '    A(i).Enabled = !A(i).Enabled;'
  12146.       ''
  12147.       '}'
  12148.       '')
  12149.     TokenTypeNames.Strings = (
  12150.       'Unknown'
  12151.       'Comment'
  12152.       'Identifier'
  12153.       'Symbol'
  12154.       'String'
  12155.       'Integer const'
  12156.       'Float const'
  12157.       'Hex const'
  12158.       'Char const'
  12159.       'Preprocessor')
  12160.     MarkedBlockStyle = 'Marked block'
  12161.     DefaultStyleName = 'Default'
  12162.     Extentions = 'js'
  12163.     LexerName = 'Java script'
  12164.   end
  12165.   object SyntAnal8: TLibSyntAnalyzer
  12166.     Formats = <
  12167.       item
  12168.         DisplayName = 'Default'
  12169.         Font.Charset = DEFAULT_CHARSET
  12170.         Font.Color = clWindowText
  12171.         Font.Height = -13
  12172.         Font.Name = 'Courier New'
  12173.         Font.Style = []
  12174.         FormatType = ftCustomFont
  12175.       end
  12176.       item
  12177.         DisplayName = 'Symbol'
  12178.         Font.Charset = DEFAULT_CHARSET
  12179.         Font.Color = clMaroon
  12180.         Font.Height = -13
  12181.         Font.Name = 'Courier New'
  12182.         Font.Style = [fsBold]
  12183.       end
  12184.       item
  12185.         DisplayName = 'Number'
  12186.         Font.Charset = DEFAULT_CHARSET
  12187.         Font.Color = clNavy
  12188.         Font.Height = -13
  12189.         Font.Name = 'Courier New'
  12190.         Font.Style = [fsBold]
  12191.       end
  12192.       item
  12193.         DisplayName = 'String'
  12194.         Font.Charset = DEFAULT_CHARSET
  12195.         Font.Color = clBlue
  12196.         Font.Height = -13
  12197.         Font.Name = 'Courier New'
  12198.         Font.Style = []
  12199.       end
  12200.       item
  12201.         DisplayName = 'Identifier'
  12202.         Font.Charset = DEFAULT_CHARSET
  12203.         Font.Color = clWindowText
  12204.         Font.Height = -13
  12205.         Font.Name = 'Courier New'
  12206.         Font.Style = []
  12207.       end
  12208.       item
  12209.         DisplayName = 'Comment'
  12210.         Font.Charset = DEFAULT_CHARSET
  12211.         Font.Color = clRed
  12212.         Font.Height = -13
  12213.         Font.Name = 'Courier New'
  12214.         Font.Style = [fsBold]
  12215.       end
  12216.       item
  12217.         DisplayName = 'Reserved word'
  12218.         Font.Charset = DEFAULT_CHARSET
  12219.         Font.Color = clWindowText
  12220.         Font.Height = -13
  12221.         Font.Name = 'Courier New'
  12222.         Font.Style = [fsBold]
  12223.       end
  12224.       item
  12225.         DisplayName = 'Marked block'
  12226.         Font.Charset = DEFAULT_CHARSET
  12227.         Font.Color = clHighlightText
  12228.         Font.Height = -13
  12229.         Font.Name = 'Courier New'
  12230.         Font.Style = []
  12231.         BgColor = clHighlight
  12232.         FormatType = ftColor
  12233.       end
  12234.       item
  12235.         DisplayName = 'Variable'
  12236.         Font.Charset = DEFAULT_CHARSET
  12237.         Font.Color = clGreen
  12238.         Font.Height = -13
  12239.         Font.Name = 'Courier New'
  12240.         Font.Style = [fsBold]
  12241.       end
  12242.       item
  12243.         DisplayName = 'Something'
  12244.         Font.Charset = DEFAULT_CHARSET
  12245.         Font.Color = clWindowText
  12246.         Font.Height = -13
  12247.         Font.Name = 'Courier New'
  12248.         Font.Style = [fsUnderline]
  12249.       end>
  12250.     TokenRules = <
  12251.       item
  12252.         DisplayName = 'Comment 1'
  12253.         StyleName = 'Comment'
  12254.         TokenType = 1
  12255.         Expression = '\#.*'
  12256.         ColumnFrom = 0
  12257.         ColumnTo = 0
  12258.       end
  12259.       item
  12260.         DisplayName = 'Variable'
  12261.         StyleName = 'Variable'
  12262.         TokenType = 8
  12263.         Expression = '\$.\w*'#13#10
  12264.         ColumnFrom = 0
  12265.         ColumnTo = 0
  12266.       end
  12267.       item
  12268.         DisplayName = 'Any name'
  12269.         StyleName = 'Identifier'
  12270.         TokenType = 2
  12271.         Expression = '[a-z_]\w*'
  12272.         ColumnFrom = 0
  12273.         ColumnTo = 0
  12274.       end
  12275.       item
  12276.         DisplayName = 'String'
  12277.         StyleName = 'String'
  12278.         TokenType = 4
  12279.         Expression = '".*?("|$)'
  12280.         ColumnFrom = 0
  12281.         ColumnTo = 0
  12282.       end
  12283.       item
  12284.         DisplayName = 'Something'
  12285.         StyleName = 'Something'
  12286.         TokenType = 9
  12287.         Expression = #39'.*?('#39'|$)'#13#10
  12288.         ColumnFrom = 0
  12289.         ColumnTo = 0
  12290.       end
  12291.       item
  12292.         DisplayName = 'Symbol'
  12293.         TokenType = 3
  12294.         Expression = '[/\*,\.;:\(\)=<>\+\-\[\]\{\}\?]'
  12295.         ColumnFrom = 0
  12296.         ColumnTo = 0
  12297.       end
  12298.       item
  12299.         DisplayName = 'Float'
  12300.         StyleName = 'Number'
  12301.         TokenType = 6
  12302.         Expression = '\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'\d+ \. \d+'
  12303.         ColumnFrom = 0
  12304.         ColumnTo = 0
  12305.       end
  12306.       item
  12307.         DisplayName = 'Integer'
  12308.         StyleName = 'Number'
  12309.         TokenType = 5
  12310.         Expression = '\d+'
  12311.         ColumnFrom = 0
  12312.         ColumnTo = 0
  12313.       end>
  12314.     BlockRules = <
  12315.       item
  12316.         DisplayName = 'Key words'
  12317.         StyleName = 'Reserved word'
  12318.         BlockType = btTagDetect
  12319.         ConditionList = <
  12320.           item
  12321.             TagList.Strings = (
  12322.               '__DATA__'
  12323.               '__END__'
  12324.               '__FILE__'
  12325.               '__LINE__'
  12326.               '__PACKAGE__'
  12327.               'abs'
  12328.               'accept'
  12329.               'alarm'
  12330.               'and'
  12331.               'atan2'
  12332.               'AUTOLOAD'
  12333.               'BEGIN'
  12334.               'bind'
  12335.               'binmode'
  12336.               'bless'
  12337.               'caller'
  12338.               'chdir'
  12339.               'CHECK'
  12340.               'chmod'
  12341.               'chomp'
  12342.               'chop'
  12343.               'chown'
  12344.               'chr'
  12345.               'chroot'
  12346.               'close'
  12347.               'closedir'
  12348.               'cmp'
  12349.               'connect'
  12350.               'continue'
  12351.               'CORE'
  12352.               'cos'
  12353.               'crypt'
  12354.               'dbmclose'
  12355.               'dbmopen'
  12356.               'define'
  12357.               'defined'
  12358.               'delete'
  12359.               'DESTROY'
  12360.               'die'
  12361.               'do'
  12362.               'dump'
  12363.               'each'
  12364.               'else'
  12365.               'elsif'
  12366.               'END'
  12367.               'endgrent'
  12368.               'endhostent'
  12369.               'endnetent'
  12370.               'endprotoent'
  12371.               'endpwent'
  12372.               'endservent'
  12373.               'eof'
  12374.               'EQ'
  12375.               'eval'
  12376.               'exec'
  12377.               'exists'
  12378.               'exit'
  12379.               'exp'
  12380.               'fcntl'
  12381.               'fileno'
  12382.               'flock'
  12383.               'for'
  12384.               'foreach'
  12385.               'fork'
  12386.               'format'
  12387.               'formline'
  12388.               'GE'
  12389.               'getc'
  12390.               'getgrent'
  12391.               'getgrgid'
  12392.               'getgrnam'
  12393.               'gethostbyaddr'
  12394.               'gethostbyname'
  12395.               'gethostent'
  12396.               'getlogin'
  12397.               'getnetbyaddr'
  12398.               'getnetbyname'
  12399.               'getnetent'
  12400.               'getpeername'
  12401.               'getpgrp'
  12402.               'getppid'
  12403.               'getpriority'
  12404.               'getprotobyname'
  12405.               'getprotobynumber'
  12406.               'getprotoent'
  12407.               'getpwent'
  12408.               'getpwnam'
  12409.               'getpwuid'
  12410.               'getservbyname'
  12411.               'getservbyport'
  12412.               'getservent'
  12413.               'getsockname'
  12414.               'getsockopt'
  12415.               'glob'
  12416.               'gmtime'
  12417.               'goto'
  12418.               'grep'
  12419.               'GT'
  12420.               'hex'
  12421.               'if'
  12422.               'index'
  12423.               'INIT'
  12424.               'int'
  12425.               'ioctl'
  12426.               'join'
  12427.               'keys'
  12428.               'kill'
  12429.               'last'
  12430.               'lc'
  12431.               'lcfirst'
  12432.               'LE'
  12433.               'length'
  12434.               'link'
  12435.               'listen'
  12436.               'local'
  12437.               'localtime'
  12438.               'lock'
  12439.               'log'
  12440.               'lstat'
  12441.               'LT'
  12442.               'm'
  12443.               'map'
  12444.               'mkdir'
  12445.               'msgctl'
  12446.               'msgget'
  12447.               'msgrcv'
  12448.               'msgsnd'
  12449.               'my'
  12450.               'NE'
  12451.               'next'
  12452.               'no'
  12453.               'not'
  12454.               'NULL'
  12455.               'oct'
  12456.               'open'
  12457.               'opendir'
  12458.               'or'
  12459.               'ord'
  12460.               'our'
  12461.               'pack'
  12462.               'package'
  12463.               'pipe'
  12464.               'pop'
  12465.               'pos'
  12466.               'print'
  12467.               'printf'
  12468.               'prototype'
  12469.               'push'
  12470.               'q'
  12471.               'qq'
  12472.               'qr'
  12473.               'qu'
  12474.               'quotemeta'
  12475.               'qw'
  12476.               'qx'
  12477.               'rand'
  12478.               'read'
  12479.               'readdir'
  12480.               'readline'
  12481.               'readlink'
  12482.               'readpipe'
  12483.               'recv'
  12484.               'redo'
  12485.               'ref'
  12486.               'rename'
  12487.               'require'
  12488.               'reset'
  12489.               'return'
  12490.               'reverse'
  12491.               'rewinddir'
  12492.               'rindex'
  12493.               'rmdir'
  12494.               's'
  12495.               'scalar'
  12496.               'seek'
  12497.               'seekdir'
  12498.               'select'
  12499.               'semctl'
  12500.               'semget'
  12501.               'semop'
  12502.               'send'
  12503.               'setgrent'
  12504.               'sethostent'
  12505.               'setnetent'
  12506.               'setpgrp'
  12507.               'setpriority'
  12508.               'setprotoent'
  12509.               'setpwent'
  12510.               'setservent'
  12511.               'setsockopt'
  12512.               'shift'
  12513.               'shmctl'
  12514.               'shmget'
  12515.               'shmread'
  12516.               'shmwrite'
  12517.               'shutdown'
  12518.               'sin'
  12519.               'sleep'
  12520.               'socket'
  12521.               'socketpair'
  12522.               'sort'
  12523.               'splice'
  12524.               'split'
  12525.               'sprintf'
  12526.               'sqrt'
  12527.               'srand'
  12528.               'stat'
  12529.               'study'
  12530.               'sub'
  12531.               'substr'
  12532.               'symlink'
  12533.               'syscall'
  12534.               'sysopen'
  12535.               'sysread'
  12536.               'sysseek'
  12537.               'system'
  12538.               'syswrite'
  12539.               'tell'
  12540.               'telldir'
  12541.               'tie'
  12542.               'tied'
  12543.               'time'
  12544.               'times'
  12545.               'tr'
  12546.               'truncate'
  12547.               'uc'
  12548.               'ucfirst'
  12549.               'umask'
  12550.               'undef'
  12551.               'unless'
  12552.               'unlink'
  12553.               'unpack'
  12554.               'unshift'
  12555.               'untie'
  12556.               'until'
  12557.               'use'
  12558.               'utime'
  12559.               'values'
  12560.               'vec'
  12561.               'wait'
  12562.               'waitpid'
  12563.               'wantarray'
  12564.               'warn'
  12565.               'while'
  12566.               'write'
  12567.               'x'
  12568.               'xor'
  12569.               'y')
  12570.             TokenTypes = 4
  12571.             IgnoreCase = True
  12572.           end>
  12573.         HighlightPos = cpAny
  12574.         IgnoreAsParent = False
  12575.       end>
  12576.     CodeTemplates = <>
  12577.     SubAnalyzers = <>
  12578.     SampleText.Strings = (
  12579.       '#!/bin/perl'
  12580.       'require "cgi-lib.pl";   '
  12581.       'use sigtrap;'
  12582.       'do '#39'envars.pl'#39';'
  12583.       '$_ = $password1;'
  12584.       'sub WriteBack {'
  12585.       '        while ($_ ne "fred")    {'
  12586.       '                sleep 5;'
  12587.       '        }'
  12588.       '}')
  12589.     TokenTypeNames.Strings = (
  12590.       'Unknown'
  12591.       'Comment'
  12592.       'Identifier'
  12593.       'Symbol'
  12594.       'String'
  12595.       'Integer const'
  12596.       'Float const'
  12597.       'Hex const'
  12598.       'Char const'
  12599.       'Something')
  12600.     MarkedBlockStyle = 'Marked block'
  12601.     DefaultStyleName = 'Default'
  12602.     Extentions = 'pl pm cgi pod'
  12603.     LexerName = 'Perl'
  12604.   end
  12605.   object SyntAnal23: TLibSyntAnalyzer
  12606.     Formats = <
  12607.       item
  12608.         DisplayName = 'Default'
  12609.         Font.Charset = DEFAULT_CHARSET
  12610.         Font.Color = clWindowText
  12611.         Font.Height = -13
  12612.         Font.Name = 'Courier New'
  12613.         Font.Style = []
  12614.         FormatType = ftCustomFont
  12615.       end
  12616.       item
  12617.         DisplayName = 'Marked block'
  12618.         Font.Charset = DEFAULT_CHARSET
  12619.         Font.Color = clHighlightText
  12620.         Font.Height = -13
  12621.         Font.Name = 'Courier New'
  12622.         Font.Style = []
  12623.         BgColor = clHighlight
  12624.         FormatType = ftColor
  12625.       end
  12626.       item
  12627.         DisplayName = 'String'
  12628.         Font.Charset = DEFAULT_CHARSET
  12629.         Font.Color = clBlue
  12630.         Font.Height = -13
  12631.         Font.Name = 'Courier New'
  12632.         Font.Style = []
  12633.       end
  12634.       item
  12635.         DisplayName = 'Reserved word'
  12636.         Font.Charset = DEFAULT_CHARSET
  12637.         Font.Color = clWindowText
  12638.         Font.Height = -13
  12639.         Font.Name = 'Courier New'
  12640.         Font.Style = [fsBold]
  12641.       end
  12642.       item
  12643.         DisplayName = 'Comment'
  12644.         Font.Charset = DEFAULT_CHARSET
  12645.         Font.Color = clRed
  12646.         Font.Height = -13
  12647.         Font.Name = 'Courier New'
  12648.         Font.Style = [fsBold]
  12649.       end
  12650.       item
  12651.         DisplayName = 'Preprocessor'
  12652.         Font.Charset = DEFAULT_CHARSET
  12653.         Font.Color = clGreen
  12654.         Font.Height = -13
  12655.         Font.Name = 'Courier New'
  12656.         Font.Style = [fsItalic]
  12657.       end
  12658.       item
  12659.         DisplayName = 'Control'#39's ID'
  12660.         Font.Charset = DEFAULT_CHARSET
  12661.         Font.Color = clPurple
  12662.         Font.Height = -13
  12663.         Font.Name = 'Courier New'
  12664.         Font.Style = [fsUnderline]
  12665.       end
  12666.       item
  12667.         DisplayName = 'Number'
  12668.         Font.Charset = DEFAULT_CHARSET
  12669.         Font.Color = clNavy
  12670.         Font.Height = -13
  12671.         Font.Name = 'Courier New'
  12672.         Font.Style = [fsBold]
  12673.       end>
  12674.     TokenRules = <
  12675.       item
  12676.         DisplayName = 'String'
  12677.         StyleName = 'String'
  12678.         TokenType = 4
  12679.         Expression = '"(\\"|.)*?("|$)'
  12680.         ColumnFrom = 0
  12681.         ColumnTo = 0
  12682.       end
  12683.       item
  12684.         DisplayName = 'Preprocessor'
  12685.         StyleName = 'Preprocessor'
  12686.         TokenType = 9
  12687.         Expression = '\#.*'
  12688.         ColumnFrom = 0
  12689.         ColumnTo = 0
  12690.       end
  12691.       item
  12692.         DisplayName = 'Comment 1'
  12693.         StyleName = 'Comment'
  12694.         TokenType = 1
  12695.         Expression = '(?s)/\*.*?(\*/|\Z)'
  12696.         ColumnFrom = 0
  12697.         ColumnTo = 0
  12698.       end
  12699.       item
  12700.         DisplayName = 'Comment 2'
  12701.         StyleName = 'Comment'
  12702.         TokenType = 1
  12703.         Expression = '//.*'
  12704.         ColumnFrom = 0
  12705.         ColumnTo = 0
  12706.       end
  12707.       item
  12708.         DisplayName = 'HEX'
  12709.         StyleName = 'Number'
  12710.         TokenType = 7
  12711.         Expression = '0x[\da-f]+L*'
  12712.         ColumnFrom = 0
  12713.         ColumnTo = 0
  12714.       end
  12715.       item
  12716.         DisplayName = 'Integer'
  12717.         StyleName = 'Number'
  12718.         BlockName = 'Resource'
  12719.         TokenType = 5
  12720.         Expression = '\d+'
  12721.         ColumnFrom = 0
  12722.         ColumnTo = 0
  12723.       end
  12724.       item
  12725.         DisplayName = 'Any name'
  12726.         TokenType = 2
  12727.         Expression = '\w+'
  12728.         ColumnFrom = 0
  12729.         ColumnTo = 0
  12730.       end>
  12731.     BlockRules = <
  12732.       item
  12733.         DisplayName = 'Key Words'
  12734.         StyleName = 'Reserved word'
  12735.         BlockType = btTagDetect
  12736.         ConditionList = <
  12737.           item
  12738.             TagList.Strings = (
  12739.               'ACCELERATORS'
  12740.               'BEGIN'
  12741.               'BITMAP'
  12742.               'CURSOR'
  12743.               'DESIGNINFO'
  12744.               'DIALOG'
  12745.               'DIALOGEX'
  12746.               'END'
  12747.               'ICON'
  12748.               'LANGUAGE'
  12749.               'MENU'
  12750.               'REGISTRY'
  12751.               'STRINGTABLE'
  12752.               'TEXTINCLUDE'
  12753.               'TOOLBAR'
  12754.               'TYPELIB'
  12755.               'VERSIONINFO')
  12756.             TokenTypes = 4
  12757.           end>
  12758.         HighlightPos = cpAny
  12759.         IgnoreAsParent = False
  12760.       end
  12761.       item
  12762.         DisplayName = 'Menu & Toolbar controls'
  12763.         StyleName = 'Control'#39's ID'
  12764.         BlockName = 'Resource'
  12765.         BlockType = btTagDetect
  12766.         ConditionList = <
  12767.           item
  12768.             TagList.Strings = (
  12769.               'BUTTON'
  12770.               'MENUITEM'
  12771.               'POPUP'
  12772.               'SEPARATOR')
  12773.             TokenTypes = 4
  12774.           end>
  12775.         HighlightPos = cpAny
  12776.         IgnoreAsParent = False
  12777.       end
  12778.       item
  12779.         DisplayName = 'Dialog controls'
  12780.         StyleName = 'Control'#39's ID'
  12781.         BlockName = 'Resource'
  12782.         BlockType = btTagDetect
  12783.         ConditionList = <
  12784.           item
  12785.             TagList.Strings = (
  12786.               'CAPTION'
  12787.               'COMBOBOX'
  12788.               'CONTROL'
  12789.               'CTEXT'
  12790.               'DEFPUSHBUTTON'
  12791.               'EDITTEXT'
  12792.               'FONT'
  12793.               'GROUPBOX'
  12794.               'ICON'
  12795.               'LISTBOX'
  12796.               'LTEXT'
  12797.               'PUSHBUTTON'
  12798.               'STYLE')
  12799.             TokenTypes = 4
  12800.           end>
  12801.         HighlightPos = cpAny
  12802.         IgnoreAsParent = False
  12803.       end
  12804.       item
  12805.         DisplayName = 'BEGIN'
  12806.         ConditionList = <
  12807.           item
  12808.             TagList.Strings = (
  12809.               'BEGIN')
  12810.             TokenTypes = 4
  12811.           end>
  12812.         BlockEnd = 'END'
  12813.         DisplayInTree = False
  12814.         HighlightPos = cpAny
  12815.         IgnoreAsParent = False
  12816.       end
  12817.       item
  12818.         DisplayName = 'END'
  12819.         BlockType = btRangeEnd
  12820.         ConditionList = <
  12821.           item
  12822.             TagList.Strings = (
  12823.               'END')
  12824.             TokenTypes = 4
  12825.           end>
  12826.         HighlightPos = cpAny
  12827.         IgnoreAsParent = False
  12828.       end
  12829.       item
  12830.         DisplayName = 'String table'
  12831.         ConditionList = <
  12832.           item
  12833.             TagList.Strings = (
  12834.               'STRINGTABLE')
  12835.             TokenTypes = 4
  12836.           end>
  12837.         BlockEnd = 'String table end'
  12838.         NameFmt = '%e2 ...'
  12839.         GroupFmt = '%s0'
  12840.         HighlightPos = cpAny
  12841.         CollapseFmt = '%s0'
  12842.         IgnoreAsParent = False
  12843.       end
  12844.       item
  12845.         DisplayName = 'String table end'
  12846.         BlockType = btRangeEnd
  12847.         ConditionList = <
  12848.           item
  12849.             TagList.Strings = (
  12850.               'END')
  12851.             TokenTypes = 4
  12852.           end>
  12853.         HighlightPos = cpAny
  12854.         IgnoreAsParent = False
  12855.       end
  12856.       item
  12857.         DisplayName = 'Resource'
  12858.         ConditionList = <
  12859.           item
  12860.             TagList.Strings = (
  12861.               'ACCELERATORS'
  12862.               'DESIGNINFO'
  12863.               'DIALOG'
  12864.               'DIALOGEX'
  12865.               'MENU'
  12866.               'TEXTINCLUDE'
  12867.               'TOOLBAR'
  12868.               'VERSIONINFO')
  12869.             TokenTypes = 4
  12870.           end
  12871.           item
  12872.             TokenTypes = 4
  12873.           end>
  12874.         IdentIndex = 1
  12875.         BlockOffset = 1
  12876.         BlockEnd = 'Resource end'
  12877.         NameFmt = '%s1'
  12878.         GroupFmt = '%s0'
  12879.         HighlightPos = cpAny
  12880.         CollapseFmt = '%s0 %s1'
  12881.         IgnoreAsParent = False
  12882.       end
  12883.       item
  12884.         DisplayName = 'Resource end'
  12885.         BlockName = 'Resource'
  12886.         StrictParent = True
  12887.         BlockType = btRangeEnd
  12888.         ConditionList = <
  12889.           item
  12890.             TagList.Strings = (
  12891.               'END')
  12892.             TokenTypes = 4
  12893.           end>
  12894.         HighlightPos = cpAny
  12895.         IgnoreAsParent = False
  12896.       end
  12897.       item
  12898.         DisplayName = '#if'
  12899.         ConditionList = <
  12900.           item
  12901.             TagList.Strings = (
  12902.               '\#if')
  12903.             CondType = tcMask
  12904.             TokenTypes = 512
  12905.           end>
  12906.         BlockEnd = '#endif'
  12907.         DisplayInTree = False
  12908.         HighlightPos = cpAny
  12909.         CollapseFmt = '%s0'
  12910.         IgnoreAsParent = False
  12911.       end
  12912.       item
  12913.         DisplayName = '#endif'
  12914.         BlockType = btRangeEnd
  12915.         ConditionList = <
  12916.           item
  12917.             TagList.Strings = (
  12918.               '\#endif')
  12919.             CondType = tcMask
  12920.             TokenTypes = 512
  12921.           end>
  12922.         HighlightPos = cpAny
  12923.         IgnoreAsParent = False
  12924.       end
  12925.       item
  12926.         DisplayName = 'BITMAP begin'
  12927.         BlockName = 'Resource'
  12928.         NotParent = True
  12929.         ConditionList = <
  12930.           item
  12931.             TagList.Strings = (
  12932.               'BITMAP'
  12933.               'CURSOR'
  12934.               'ICON'
  12935.               'REGISTRY'
  12936.               'TYPELIB')
  12937.             TokenTypes = 4
  12938.           end
  12939.           item
  12940.             TokenTypes = 4
  12941.           end>
  12942.         BlockOffset = 1
  12943.         BlockEnd = 'BITMAP end'
  12944.         NameFmt = '%s1  ::  %s-1'
  12945.         GroupFmt = '%s0'
  12946.         HighlightPos = cpAny
  12947.         IgnoreAsParent = False
  12948.       end
  12949.       item
  12950.         DisplayName = 'BITMAP end'
  12951.         BlockName = 'Resource'
  12952.         NotParent = True
  12953.         BlockType = btRangeEnd
  12954.         ConditionList = <
  12955.           item
  12956.             TagList.Strings = (
  12957.               'BITMAP'
  12958.               'CURSOR'
  12959.               'ICON'
  12960.               'REGISTRY'
  12961.               'TYPELIB')
  12962.             TokenTypes = 4
  12963.           end
  12964.           item
  12965.             TokenTypes = 4
  12966.           end>
  12967.         BlockOffset = -1
  12968.         HighlightPos = cpAny
  12969.         IgnoreAsParent = False
  12970.       end>
  12971.     CodeTemplates = <>
  12972.     SubAnalyzers = <>
  12973.     TokenTypeNames.Strings = (
  12974.       'Unknown'
  12975.       'Comment'
  12976.       'Identifier'
  12977.       'Symbol'
  12978.       'String'
  12979.       'Integer const'
  12980.       'Float const'
  12981.       'Hex const'
  12982.       'Char const'
  12983.       'Preprocessor')
  12984.     MarkedBlockStyle = 'Marked block'
  12985.     DefaultStyleName = 'Default'
  12986.     Extentions = 'Rc'
  12987.     LexerName = 'Resource files'
  12988.   end
  12989.   object SyntAnal42: TLibSyntAnalyzer
  12990.     Formats = <
  12991.       item
  12992.         DisplayName = 'Marked block'
  12993.         Font.Charset = DEFAULT_CHARSET
  12994.         Font.Color = clHighlightText
  12995.         Font.Height = -13
  12996.         Font.Name = 'Courier New'
  12997.         Font.Style = []
  12998.         BgColor = clHighlight
  12999.         FormatType = ftColor
  13000.       end
  13001.       item
  13002.         DisplayName = 'Style 1'
  13003.         Font.Charset = DEFAULT_CHARSET
  13004.         Font.Color = clWindowText
  13005.         Font.Height = -13
  13006.         Font.Name = 'Courier New'
  13007.         Font.Style = []
  13008.         BgColor = clScrollBar
  13009.       end>
  13010.     TokenRules = <
  13011.       item
  13012.         DisplayName = 'Token rule 5'
  13013.         StyleName = 'Style 1'
  13014.         Expression = '((\w+)\.)*(\w+)\s=\s((\w+)\.)*(\w+)'
  13015.         ColumnFrom = 0
  13016.         ColumnTo = 0
  13017.       end
  13018.       item
  13019.         DisplayName = 'Token rule 4'
  13020.         StyleName = 'Style 1'
  13021.         Expression = '(\w+)\s:=\s(\w+)'
  13022.         ColumnFrom = 0
  13023.         ColumnTo = 0
  13024.       end
  13025.       item
  13026.         DisplayName = 'Token rule 1'
  13027.         StyleName = 'Style 1'
  13028.         Expression = 
  13029.           '(http|ftp)://'#13#10'[\w\d\-]+'#13#10'(\.[\w\d\-]+)+'#13#10'(:\d\d?\d?\d?\d?)?'#13#10'((' +
  13030.           '(/[%+\w\d\-\\\.]*)+)*)'#13#10'   (\?[^\s=&"]+=[^\s=&"]+(&[^\s=&"]+=[^\' +
  13031.           's=&"]+)*)?'#13#10'   (\#[\w\d\-%+]+)?'
  13032.         ColumnFrom = 0
  13033.         ColumnTo = 0
  13034.       end
  13035.       item
  13036.         DisplayName = 'Token rule 2'
  13037.         StyleName = 'Style 1'
  13038.         Expression = 
  13039.           'www(\.[\w\d\-]+)+(:\d\d?\d?\d?\d?)?(((/[%+\w\d\-\\\.]*)+)*)(\?[^' +
  13040.           '\s=&"]+=[^\s=&"]+(&[^\s=&"]+=[^\s=&"]+)*)?(\#[\w\d\-%+]+)?'
  13041.         ColumnFrom = 0
  13042.         ColumnTo = 0
  13043.       end
  13044.       item
  13045.         DisplayName = 'Token rule 3'
  13046.         StyleName = 'Style 1'
  13047.         Expression = '[_a-z\d\-\.]+@[_a-z\d\-]+(\.[_a-z\d\-]+)+'
  13048.         ColumnFrom = 0
  13049.         ColumnTo = 0
  13050.       end
  13051.       item
  13052.         DisplayName = 'Lexem'
  13053.         Expression = '.*\b'
  13054.         ColumnFrom = 0
  13055.         ColumnTo = 0
  13056.       end>
  13057.     BlockRules = <>
  13058.     CodeTemplates = <>
  13059.     SubAnalyzers = <>
  13060.     TokenTypeNames.Strings = (
  13061.       'Unknown'
  13062.       'Comment'
  13063.       'Identifier'
  13064.       'Symbol'
  13065.       'String'
  13066.       'Integer const'
  13067.       'Float const'
  13068.       'Hex const'
  13069.       'Char const'
  13070.       'Preprocessor')
  13071.     MarkedBlockStyle = 'Marked block'
  13072.     Extentions = 'txt'
  13073.     LexerName = 'Def text'
  13074.   end
  13075.   object SyntAnal46: TLibSyntAnalyzer
  13076.     Formats = <
  13077.       item
  13078.         DisplayName = 'Marked block'
  13079.         Font.Charset = DEFAULT_CHARSET
  13080.         Font.Color = clHighlightText
  13081.         Font.Height = -13
  13082.         Font.Name = 'Courier New'
  13083.         Font.Style = []
  13084.         BgColor = clHighlight
  13085.         FormatType = ftColor
  13086.       end>
  13087.     TokenRules = <
  13088.       item
  13089.         DisplayName = 'Empty line'
  13090.         Expression = '^\s*[\n\r]{1,2}'
  13091.         ColumnFrom = 0
  13092.         ColumnTo = 0
  13093.       end
  13094.       item
  13095.         DisplayName = 'not empty line'
  13096.         TokenType = 1
  13097.         Expression = '^.*$'
  13098.         ColumnFrom = 0
  13099.         ColumnTo = 0
  13100.       end>
  13101.     BlockRules = <
  13102.       item
  13103.         DisplayName = 'Paragraph'
  13104.         BlockName = 'Paragraph'
  13105.         NotParent = True
  13106.         ConditionList = <
  13107.           item
  13108.             TokenTypes = 2
  13109.           end>
  13110.         BlockEnd = 'Paragraph end'
  13111.         DisplayInTree = False
  13112.         HighlightPos = cpAny
  13113.         IgnoreAsParent = False
  13114.       end
  13115.       item
  13116.         DisplayName = 'Paragraph end'
  13117.         BlockName = 'Paragraph'
  13118.         BlockType = btRangeEnd
  13119.         ConditionList = <
  13120.           item
  13121.             TokenTypes = 1
  13122.           end>
  13123.         HighlightPos = cpAny
  13124.         IgnoreAsParent = False
  13125.       end>
  13126.     CodeTemplates = <>
  13127.     SubAnalyzers = <>
  13128.     TokenTypeNames.Strings = (
  13129.       'Empty'
  13130.       'Line')
  13131.     Extentions = 'txt'
  13132.     LexerName = 'Text files'
  13133.     SkipSpaces = False
  13134.   end
  13135.   object SyntAnal51: TLibSyntAnalyzer
  13136.     Formats = <
  13137.       item
  13138.         DisplayName = 'Marked block'
  13139.         Font.Charset = DEFAULT_CHARSET
  13140.         Font.Color = clHighlightText
  13141.         Font.Height = -13
  13142.         Font.Name = 'Courier New'
  13143.         Font.Style = []
  13144.         BgColor = clHighlight
  13145.         FormatType = ftColor
  13146.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13147.       end
  13148.       item
  13149.         DisplayName = 'Date'
  13150.         Font.Charset = DEFAULT_CHARSET
  13151.         Font.Color = clTeal
  13152.         Font.Height = -13
  13153.         Font.Name = 'Courier New'
  13154.         Font.Style = []
  13155.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13156.       end
  13157.       item
  13158.         DisplayName = 'Time'
  13159.         Font.Charset = DEFAULT_CHARSET
  13160.         Font.Color = clMaroon
  13161.         Font.Height = -13
  13162.         Font.Name = 'Courier New'
  13163.         Font.Style = []
  13164.         BorderColorLeft = clGray
  13165.         BorderTypeRight = blDouble
  13166.         BorderColorRight = clGray
  13167.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13168.       end
  13169.       item
  13170.         DisplayName = 'Separator'
  13171.         Font.Charset = DEFAULT_CHARSET
  13172.         Font.Color = clActiveBorder
  13173.         Font.Height = -13
  13174.         Font.Name = 'Courier New'
  13175.         Font.Style = []
  13176.         Hidden = True
  13177.       end
  13178.       item
  13179.         DisplayName = 'Info'
  13180.         Font.Charset = DEFAULT_CHARSET
  13181.         Font.Color = clNavy
  13182.         Font.Height = -13
  13183.         Font.Name = 'Courier New'
  13184.         Font.Style = [fsBold]
  13185.         BgColor = 15658734
  13186.         BorderTypeRight = blDot
  13187.         BorderColorRight = clGray
  13188.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13189.       end
  13190.       item
  13191.         DisplayName = 'Error'
  13192.         Font.Charset = DEFAULT_CHARSET
  13193.         Font.Color = clWhite
  13194.         Font.Height = -13
  13195.         Font.Name = 'Courier New'
  13196.         Font.Style = [fsBold]
  13197.         BgColor = clRed
  13198.         BorderTypeRight = blDot
  13199.         BorderColorRight = clGray
  13200.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13201.       end
  13202.       item
  13203.         DisplayName = 'Warning'
  13204.         Font.Charset = DEFAULT_CHARSET
  13205.         Font.Color = clPurple
  13206.         Font.Height = -13
  13207.         Font.Name = 'Courier New'
  13208.         Font.Style = [fsBold]
  13209.         BgColor = 16777164
  13210.         BorderTypeRight = blDot
  13211.         BorderColorRight = clGray
  13212.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13213.       end
  13214.       item
  13215.         DisplayName = 'Level'
  13216.         Font.Charset = DEFAULT_CHARSET
  13217.         Font.Color = clBlue
  13218.         Font.Height = -13
  13219.         Font.Name = 'Courier New'
  13220.         Font.Style = [fsBold]
  13221.         BgColor = 16771818
  13222.         BorderTypeRight = blDouble
  13223.         BorderColorRight = clGray
  13224.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13225.       end
  13226.       item
  13227.         DisplayName = 'Message'
  13228.         Font.Charset = RUSSIAN_CHARSET
  13229.         Font.Color = clNavy
  13230.         Font.Height = -13
  13231.         Font.Name = 'Times New Roman'
  13232.         Font.Style = []
  13233.         BgColor = 14155775
  13234.         FormatType = ftCustomFont
  13235.         FormatFlags = [ffBold, ffItalic, ffUnderline, ffStrikeOut, ffReadOnly]
  13236.       end>
  13237.     TokenRules = <
  13238.       item
  13239.         DisplayName = 'Message line'
  13240.         StyleName = 'Message'
  13241.         Expression = '^\t.*\r\n'
  13242.         ColumnFrom = 0
  13243.         ColumnTo = 0
  13244.       end
  13245.       item
  13246.         DisplayName = 'Separator'
  13247.         StyleName = 'Separator'
  13248.         TokenType = 1
  13249.         Expression = '\|'
  13250.         ColumnFrom = 0
  13251.         ColumnTo = 0
  13252.       end
  13253.       item
  13254.         DisplayName = 'Date'
  13255.         StyleName = 'Date'
  13256.         TokenType = 2
  13257.         Expression = '^.{11,11}'
  13258.         ColumnFrom = 0
  13259.         ColumnTo = 0
  13260.       end
  13261.       item
  13262.         DisplayName = 'Time'
  13263.         StyleName = 'Time'
  13264.         TokenType = 3
  13265.         Expression = '.{13,13}'
  13266.         ColumnFrom = 12
  13267.         ColumnTo = 12
  13268.       end
  13269.       item
  13270.         DisplayName = 'Info'
  13271.         StyleName = 'Info'
  13272.         TokenType = 5
  13273.         Expression = '(?-x) Info    '
  13274.         ColumnFrom = 26
  13275.         ColumnTo = 26
  13276.       end
  13277.       item
  13278.         DisplayName = 'Error'
  13279.         StyleName = 'Error'
  13280.         TokenType = 7
  13281.         Expression = '(?-x) Error   '
  13282.         ColumnFrom = 26
  13283.         ColumnTo = 26
  13284.       end
  13285.       item
  13286.         DisplayName = 'Warning'
  13287.         StyleName = 'Warning'
  13288.         TokenType = 6
  13289.         Expression = '(?-x) Warning '
  13290.         ColumnFrom = 0
  13291.         ColumnTo = 0
  13292.       end
  13293.       item
  13294.         DisplayName = 'Level'
  13295.         StyleName = 'Level'
  13296.         TokenType = 4
  13297.         Expression = '[^\|]{4,5}'
  13298.         ColumnFrom = 35
  13299.         ColumnTo = 37
  13300.       end
  13301.       item
  13302.         DisplayName = 'Message'
  13303.         StyleName = 'Message'
  13304.         Expression = '.*\r\n'
  13305.         ColumnFrom = 0
  13306.         ColumnTo = 0
  13307.       end>
  13308.     BlockRules = <
  13309.       item
  13310.         DisplayName = 'ML Message'
  13311.         BlockName = 'ML Message'
  13312.         NotParent = True
  13313.         ConditionList = <
  13314.           item
  13315.             TokenTypes = 1
  13316.           end
  13317.           item
  13318.             TokenTypes = 1
  13319.           end>
  13320.         BlockOffset = 1
  13321.         BlockEnd = 'ML Message End'
  13322.         EndOfTextClose = True
  13323.         HighlightPos = cpAny
  13324.         CollapseFmt = '%s1 ...'
  13325.         IgnoreAsParent = False
  13326.       end
  13327.       item
  13328.         DisplayName = 'ML Message End'
  13329.         BlockType = btRangeEnd
  13330.         ConditionList = <
  13331.           item
  13332.             CondType = tcNotEqual
  13333.             TokenTypes = 1
  13334.           end
  13335.           item
  13336.             TokenTypes = 1
  13337.           end>
  13338.         BlockOffset = 1
  13339.         HighlightPos = cpAny
  13340.         IgnoreAsParent = False
  13341.       end>
  13342.     CodeTemplates = <>
  13343.     SubAnalyzers = <>
  13344.     TokenTypeNames.Strings = (
  13345.       'Message'
  13346.       'Separator'
  13347.       'Date'
  13348.       'Time'
  13349.       'Level'
  13350.       'Info'
  13351.       'Warning'
  13352.       'Error')
  13353.     MarkedBlockStyle = 'Marked block'
  13354.     Extentions = 'log'
  13355.     LexerName = 'TrVLog'
  13356.     SkipSpaces = False
  13357.     Left = 144
  13358.     Top = 184
  13359.   end
  13360.   object SyntAnal48: TLibSyntAnalyzer
  13361.     Formats = <
  13362.       item
  13363.         DisplayName = 'Default'
  13364.         Font.Charset = DEFAULT_CHARSET
  13365.         Font.Color = clWindowText
  13366.         Font.Height = -13
  13367.         Font.Name = 'Courier New'
  13368.         Font.Style = []
  13369.         FormatType = ftCustomFont
  13370.       end
  13371.       item
  13372.         DisplayName = 'Identifier'
  13373.         Font.Charset = DEFAULT_CHARSET
  13374.         Font.Color = clWindowText
  13375.         Font.Height = -13
  13376.         Font.Name = 'Courier New'
  13377.         Font.Style = []
  13378.       end
  13379.       item
  13380.         DisplayName = 'Reserved word'
  13381.         Font.Charset = DEFAULT_CHARSET
  13382.         Font.Color = clWindowText
  13383.         Font.Height = -13
  13384.         Font.Name = 'Courier New'
  13385.         Font.Style = [fsBold]
  13386.       end
  13387.       item
  13388.         DisplayName = 'String'
  13389.         Font.Charset = DEFAULT_CHARSET
  13390.         Font.Color = clBlue
  13391.         Font.Height = -13
  13392.         Font.Name = 'Courier New'
  13393.         Font.Style = []
  13394.       end
  13395.       item
  13396.         DisplayName = 'Comment'
  13397.         Font.Charset = DEFAULT_CHARSET
  13398.         Font.Color = clRed
  13399.         Font.Height = -13
  13400.         Font.Name = 'Courier New'
  13401.         Font.Style = [fsBold]
  13402.       end
  13403.       item
  13404.         DisplayName = 'Symbol'
  13405.         Font.Charset = DEFAULT_CHARSET
  13406.         Font.Color = clMaroon
  13407.         Font.Height = -13
  13408.         Font.Name = 'Courier New'
  13409.         Font.Style = [fsBold]
  13410.       end
  13411.       item
  13412.         DisplayName = 'Number'
  13413.         Font.Charset = DEFAULT_CHARSET
  13414.         Font.Color = clNavy
  13415.         Font.Height = -13
  13416.         Font.Name = 'Courier New'
  13417.         Font.Style = [fsBold]
  13418.       end
  13419.       item
  13420.         DisplayName = 'Marked block'
  13421.         Font.Charset = DEFAULT_CHARSET
  13422.         Font.Color = clHighlightText
  13423.         Font.Height = -13
  13424.         Font.Name = 'Courier New'
  13425.         Font.Style = []
  13426.         BgColor = clHighlight
  13427.         FormatType = ftColor
  13428.       end
  13429.       item
  13430.         DisplayName = 'Function'
  13431.         Font.Charset = DEFAULT_CHARSET
  13432.         Font.Color = clNavy
  13433.         Font.Height = -13
  13434.         Font.Name = 'Courier New'
  13435.         Font.Style = [fsBold]
  13436.       end
  13437.       item
  13438.         DisplayName = 'Table'
  13439.         Font.Charset = DEFAULT_CHARSET
  13440.         Font.Color = clGreen
  13441.         Font.Height = -13
  13442.         Font.Name = 'Courier New'
  13443.         Font.Style = []
  13444.       end
  13445.       item
  13446.         DisplayName = 'Alias'
  13447.         Font.Charset = DEFAULT_CHARSET
  13448.         Font.Color = clGreen
  13449.         Font.Height = -13
  13450.         Font.Name = 'Courier New'
  13451.         Font.Style = [fsBold]
  13452.       end
  13453.       item
  13454.         DisplayName = 'Operators'
  13455.         Font.Charset = DEFAULT_CHARSET
  13456.         Font.Color = clMaroon
  13457.         Font.Height = -13
  13458.         Font.Name = 'Courier New'
  13459.         Font.Style = [fsBold]
  13460.       end
  13461.       item
  13462.         DisplayName = 'Tree (Bold)'
  13463.         Font.Charset = DEFAULT_CHARSET
  13464.         Font.Color = clWindowText
  13465.         Font.Height = -13
  13466.         Font.Name = 'Courier New'
  13467.         Font.Style = [fsBold]
  13468.       end
  13469.       item
  13470.         DisplayName = 'Tree (Section)'
  13471.         Font.Charset = DEFAULT_CHARSET
  13472.         Font.Color = clBlue
  13473.         Font.Height = -13
  13474.         Font.Name = 'Courier New'
  13475.         Font.Style = []
  13476.       end
  13477.       item
  13478.         DisplayName = 'Tree (item)'
  13479.         Font.Charset = DEFAULT_CHARSET
  13480.         Font.Color = clGreen
  13481.         Font.Height = -13
  13482.         Font.Name = 'Courier New'
  13483.         Font.Style = []
  13484.       end>
  13485.     TokenRules = <
  13486.       item
  13487.         DisplayName = 'String'
  13488.         StyleName = 'String'
  13489.         TokenType = 4
  13490.         Expression = '".*?("|$)'
  13491.         ColumnFrom = 0
  13492.         ColumnTo = 0
  13493.       end
  13494.       item
  13495.         DisplayName = 'String 2'
  13496.         StyleName = 'String'
  13497.         TokenType = 4
  13498.         Expression = #39'.*?('#39'|$)'
  13499.         ColumnFrom = 0
  13500.         ColumnTo = 0
  13501.       end
  13502.       item
  13503.         DisplayName = 'Any name'
  13504.         StyleName = 'Identifier'
  13505.         TokenType = 2
  13506.         Expression = '[a-z_]\w*'
  13507.         ColumnFrom = 0
  13508.         ColumnTo = 0
  13509.       end
  13510.       item
  13511.         DisplayName = 'Float'
  13512.         StyleName = 'Number'
  13513.         TokenType = 6
  13514.         Expression = '\d+\.?\d+e[\+\-]?\d+|\d+\.\d+'
  13515.         ColumnFrom = 0
  13516.         ColumnTo = 0
  13517.       end
  13518.       item
  13519.         DisplayName = 'Integer'
  13520.         StyleName = 'Number'
  13521.         TokenType = 5
  13522.         Expression = '\d+'
  13523.         ColumnFrom = 0
  13524.         ColumnTo = 0
  13525.       end
  13526.       item
  13527.         DisplayName = 'Comment'
  13528.         StyleName = 'Comment'
  13529.         TokenType = 1
  13530.         Expression = '(?s)/\*.*?(\*/|\Z)'#13#10
  13531.         ColumnFrom = 0
  13532.         ColumnTo = 0
  13533.       end
  13534.       item
  13535.         DisplayName = 'Symbol'
  13536.         StyleName = 'Symbol'
  13537.         TokenType = 3
  13538.         Expression = '[/,\.;:\(\)=<>\+\-]+'
  13539.         ColumnFrom = 0
  13540.         ColumnTo = 0
  13541.       end>
  13542.     BlockRules = <
  13543.       item
  13544.         DisplayName = 'Key words'
  13545.         StyleName = 'Reserved word'
  13546.         BlockType = btTagDetect
  13547.         ConditionList = <
  13548.           item
  13549.             TagList.Strings = (
  13550.               'create'
  13551.               'delete'
  13552.               'from'
  13553.               'group'
  13554.               'having'
  13555.               'insert'
  13556.               'order'
  13557.               'select'
  13558.               'union'
  13559.               'update'
  13560.               'where')
  13561.             TokenTypes = 4
  13562.             IgnoreCase = True
  13563.           end>
  13564.         HighlightPos = cpAny
  13565.         TokenType = 10
  13566.         IgnoreAsParent = False
  13567.       end
  13568.       item
  13569.         DisplayName = 'Operations'
  13570.         StyleName = 'Operators'
  13571.         BlockType = btTagDetect
  13572.         ConditionList = <
  13573.           item
  13574.             TagList.Strings = (
  13575.               'all'
  13576.               'and'
  13577.               'any'
  13578.               'as'
  13579.               'avg'
  13580.               'between'
  13581.               'by'
  13582.               'count'
  13583.               'distinct'
  13584.               'exists'
  13585.               'grant'
  13586.               'in'
  13587.               'index'
  13588.               'inner'
  13589.               'is'
  13590.               'join'
  13591.               'left'
  13592.               'like'
  13593.               'max'
  13594.               'min'
  13595.               'not'
  13596.               'null'
  13597.               'on'
  13598.               'option'
  13599.               'or'
  13600.               'outer'
  13601.               'some'
  13602.               'table'
  13603.               'view')
  13604.             TokenTypes = 4
  13605.             IgnoreCase = True
  13606.           end>
  13607.         HighlightPos = cpAny
  13608.         IgnoreAsParent = False
  13609.       end
  13610.       item
  13611.         DisplayName = 'Functions'
  13612.         StyleName = 'Function'
  13613.         BlockType = btTagDetect
  13614.         ConditionList = <
  13615.           item
  13616.             TagList.Strings = (
  13617.               'CONCAT'
  13618.               'DATE_FORMAT'
  13619.               'TIMEDIFF')
  13620.             TokenTypes = 4
  13621.           end>
  13622.         HighlightPos = cpAny
  13623.         IgnoreAsParent = False
  13624.       end
  13625.       item
  13626.         DisplayName = 'Table or Alias'
  13627.         StyleName = 'Table'
  13628.         BlockType = btTagDetect
  13629.         ConditionList = <
  13630.           item
  13631.             TagList.Strings = (
  13632.               '.')
  13633.             TokenTypes = 8
  13634.           end
  13635.           item
  13636.             TokenTypes = 4
  13637.           end>
  13638.         IdentIndex = 1
  13639.         HighlightPos = cpAny
  13640.         IgnoreAsParent = False
  13641.       end
  13642.       item
  13643.         DisplayName = 'Table'
  13644.         StyleName = 'Table'
  13645.         BlockName = 'From'
  13646.         BlockType = btTagDetect
  13647.         ConditionList = <
  13648.           item
  13649.             TagList.Strings = (
  13650.               '.')
  13651.             CondType = tcNotEqual
  13652.             TokenTypes = 8
  13653.           end
  13654.           item
  13655.             TokenTypes = 4
  13656.           end
  13657.           item
  13658.             TokenTypes = 1032
  13659.           end>
  13660.         IdentIndex = 1
  13661.         HighlightPos = cpAny
  13662.         TokenType = 7
  13663.         IgnoreAsParent = False
  13664.       end
  13665.       item
  13666.         DisplayName = 'Section End'
  13667.         BlockType = btRangeEnd
  13668.         ConditionList = <
  13669.           item
  13670.             TokenTypes = 1024
  13671.           end>
  13672.         BlockOffset = 1
  13673.         HighlightPos = cpAny
  13674.         IgnoreAsParent = False
  13675.       end
  13676.       item
  13677.         DisplayName = 'Alias'
  13678.         StyleName = 'Alias'
  13679.         BlockName = 'From'
  13680.         BlockType = btTagDetect
  13681.         ConditionList = <
  13682.           item
  13683.             TokenTypes = 4
  13684.           end
  13685.           item
  13686.             TokenTypes = 128
  13687.           end>
  13688.         HighlightPos = cpAny
  13689.         TokenType = 8
  13690.         IgnoreAsParent = False
  13691.       end
  13692.       item
  13693.         DisplayName = 'Database.Table to Tree'
  13694.         BlockName = 'From'
  13695.         ConditionList = <
  13696.           item
  13697.             TokenTypes = 132
  13698.           end
  13699.           item
  13700.             TagList.Strings = (
  13701.               '.')
  13702.             TokenTypes = 8
  13703.           end
  13704.           item
  13705.             TokenTypes = 4
  13706.           end>
  13707.         NotCollapsed = True
  13708.         NameFmt = '%s0.%s-2'
  13709.         GroupFmt = 'Used Tables'
  13710.         HighlightPos = cpAny
  13711.         CancelNextRules = True
  13712.         NoEndRule = True
  13713.         TreeItemStyle = 'Tree (item)'
  13714.         TreeGroupStyle = 'Tree (Bold)'
  13715.         TreeItemImage = 4
  13716.         IgnoreAsParent = False
  13717.       end
  13718.       item
  13719.         DisplayName = 'Table to Tree'
  13720.         BlockName = 'From'
  13721.         ConditionList = <
  13722.           item
  13723.             TokenTypes = 128
  13724.           end
  13725.           item
  13726.             TagList.Strings = (
  13727.               '.')
  13728.             CondType = tcNotEqual
  13729.             TokenTypes = 8
  13730.           end>
  13731.         BlockOffset = -1
  13732.         NotCollapsed = True
  13733.         GroupFmt = 'Used Tables'
  13734.         HighlightPos = cpAny
  13735.         NoEndRule = True
  13736.         TreeItemStyle = 'Tree (item)'
  13737.         TreeGroupStyle = 'Tree (Bold)'
  13738.         TreeItemImage = 4
  13739.         IgnoreAsParent = False
  13740.       end
  13741.       item
  13742.         DisplayName = 'Alias to tree'
  13743.         BlockName = 'From'
  13744.         StrictParent = True
  13745.         ConditionList = <
  13746.           item
  13747.             TokenTypes = 256
  13748.           end>
  13749.         BlockOffset = 1
  13750.         NotCollapsed = True
  13751.         NameFmt = '%s0 = %s1'
  13752.         GroupFmt = 'Aliases'
  13753.         HighlightPos = cpAny
  13754.         NoEndRule = True
  13755.         TreeItemStyle = 'Tree (item)'
  13756.         TreeGroupStyle = 'Tree (Bold)'
  13757.         TreeItemImage = 1
  13758.         IgnoreAsParent = False
  13759.       end
  13760.       item
  13761.         DisplayName = 'Statement start'
  13762.         ConditionList = <
  13763.           item
  13764.             TagList.Strings = (
  13765.               'delete'
  13766.               'insert'
  13767.               'select'
  13768.               'update')
  13769.             TokenTypes = 1024
  13770.             IgnoreCase = True
  13771.           end>
  13772.         EndOfTextClose = True
  13773.         HighlightPos = cpAny
  13774.         DrawStaple = True
  13775.         CollapseFmt = '%s0 ...'
  13776.         SelfClose = True
  13777.         TreeItemStyle = 'Tree (Bold)'
  13778.         TreeItemImage = 0
  13779.         IgnoreAsParent = False
  13780.       end
  13781.       item
  13782.         DisplayName = 'Select'
  13783.         ConditionList = <
  13784.           item
  13785.             TagList.Strings = (
  13786.               'select')
  13787.             TokenTypes = 1024
  13788.             IgnoreCase = True
  13789.           end>
  13790.         BlockEnd = 'Section End'
  13791.         DisplayInTree = False
  13792.         HighlightPos = cpAny
  13793.         DrawStaple = True
  13794.         CollapseFmt = '%s0 ...'
  13795.         IgnoreAsParent = False
  13796.       end
  13797.       item
  13798.         DisplayName = 'From'
  13799.         ConditionList = <
  13800.           item
  13801.             TagList.Strings = (
  13802.               'from')
  13803.             TokenTypes = 1024
  13804.             IgnoreCase = True
  13805.           end>
  13806.         BlockEnd = 'Section End'
  13807.         EndOfTextClose = True
  13808.         HighlightPos = cpAny
  13809.         DrawStaple = True
  13810.         CollapseFmt = '%s0 ...'
  13811.         TreeItemStyle = 'Tree (Section)'
  13812.         TreeItemImage = 2
  13813.         IgnoreAsParent = False
  13814.       end
  13815.       item
  13816.         DisplayName = 'Where'
  13817.         ConditionList = <
  13818.           item
  13819.             TagList.Strings = (
  13820.               'where')
  13821.             TokenTypes = 1024
  13822.             IgnoreCase = True
  13823.           end>
  13824.         BlockEnd = 'Section End'
  13825.         HighlightPos = cpAny
  13826.         DrawStaple = True
  13827.         CollapseFmt = '%s0 ...'
  13828.         TreeItemStyle = 'Tree (Section)'
  13829.         TreeItemImage = 2
  13830.         IgnoreAsParent = False
  13831.       end
  13832.       item
  13833.         DisplayName = 'Group'
  13834.         ConditionList = <
  13835.           item
  13836.             TagList.Strings = (
  13837.               'group')
  13838.             TokenTypes = 1024
  13839.             IgnoreCase = True
  13840.           end>
  13841.         HighlightPos = cpAny
  13842.         DrawStaple = True
  13843.         CollapseFmt = '%s0 ...'
  13844.         TreeItemStyle = 'Tree (Section)'
  13845.         TreeItemImage = 2
  13846.         IgnoreAsParent = False
  13847.       end
  13848.       item
  13849.         DisplayName = 'Order'
  13850.         ConditionList = <
  13851.           item
  13852.             TagList.Strings = (
  13853.               'order')
  13854.             TokenTypes = 1024
  13855.             IgnoreCase = True
  13856.           end>
  13857.         HighlightPos = cpAny
  13858.         DrawStaple = True
  13859.         CollapseFmt = '%s0 ...'
  13860.         TreeItemStyle = 'Tree (Section)'
  13861.         TreeItemImage = 2
  13862.         IgnoreAsParent = False
  13863.       end
  13864.       item
  13865.         DisplayName = 'Having'
  13866.         ConditionList = <
  13867.           item
  13868.             TagList.Strings = (
  13869.               'having')
  13870.             TokenTypes = 1024
  13871.             IgnoreCase = True
  13872.           end>
  13873.         HighlightPos = cpAny
  13874.         DrawStaple = True
  13875.         CollapseFmt = '%s0 ...'
  13876.         TreeItemStyle = 'Tree (Section)'
  13877.         TreeItemImage = 2
  13878.         IgnoreAsParent = False
  13879.       end>
  13880.     CodeTemplates = <>
  13881.     SubAnalyzers = <>
  13882.     SampleText.Strings = (
  13883.       '/*Syntax highlighting*/'
  13884.       
  13885.         'SELECT c.session , c.username ,TIMEDIFF(max(c.datetime) , min(c.' +
  13886.         'datetime))'
  13887.       
  13888.         'FROM  livehelp_domain_user a , livehelp_users b, livehelp_messag' +
  13889.         'es c'
  13890.       'WHERE a.id_domain = 29 AND'
  13891.       '      a.id_user = b.id AND'
  13892.       '      CONCAT( b.firstname, '#39' '#39',b.lastname)   = c.username AND'
  13893.       '      DATE_FORMAT(c.datetime,'#39'%m/%d/%Y'#39') ='#39'09/21/2006'#39
  13894.       'GROUP BY c.session'
  13895.       'ORDER BY c.session,c.username'
  13896.       '')
  13897.     TokenTypeNames.Strings = (
  13898.       'Unknown'
  13899.       'Comment'
  13900.       'Identifier'
  13901.       'Symbol'
  13902.       'String'
  13903.       'Integer const'
  13904.       'Float const'
  13905.       'Table name'
  13906.       'Alias'
  13907.       'Function'
  13908.       'Main KeyWords')
  13909.     MarkedBlockStyle = 'Marked block'
  13910.     DefaultStyleName = 'Default'
  13911.     Extentions = 'sql'
  13912.     LexerName = 'SQL'
  13913.     Left = 144
  13914.     Top = 184
  13915.   end
  13916.   object SyntAnal2: TLibSyntAnalyzer
  13917.     Formats = <
  13918.       item
  13919.         DisplayName = 'Default'
  13920.         Font.Charset = DEFAULT_CHARSET
  13921.         Font.Color = clWindowText
  13922.         Font.Height = -13
  13923.         Font.Name = 'Courier New'
  13924.         Font.Style = []
  13925.       end
  13926.       item
  13927.         DisplayName = 'Marked block'
  13928.         Font.Charset = DEFAULT_CHARSET
  13929.         Font.Color = clHighlightText
  13930.         Font.Height = -13
  13931.         Font.Name = 'Courier New'
  13932.         Font.Style = []
  13933.         BgColor = clHighlight
  13934.         FormatType = ftColor
  13935.       end
  13936.       item
  13937.         DisplayName = 'Symbol'
  13938.         Font.Charset = DEFAULT_CHARSET
  13939.         Font.Color = clBlack
  13940.         Font.Height = -13
  13941.         Font.Name = 'Courier New'
  13942.         Font.Style = []
  13943.       end
  13944.       item
  13945.         DisplayName = 'Number'
  13946.         Font.Charset = DEFAULT_CHARSET
  13947.         Font.Color = clPurple
  13948.         Font.Height = -13
  13949.         Font.Name = 'Courier New'
  13950.         Font.Style = []
  13951.       end
  13952.       item
  13953.         DisplayName = 'String'
  13954.         Font.Charset = DEFAULT_CHARSET
  13955.         Font.Color = 21156
  13956.         Font.Height = -13
  13957.         Font.Name = 'Courier New'
  13958.         Font.Style = []
  13959.         FormatType = ftColor
  13960.       end
  13961.       item
  13962.         DisplayName = 'Identifier'
  13963.         Font.Charset = DEFAULT_CHARSET
  13964.         Font.Color = clWindowText
  13965.         Font.Height = -13
  13966.         Font.Name = 'Courier New'
  13967.         Font.Style = []
  13968.       end
  13969.       item
  13970.         DisplayName = 'Reserved word'
  13971.         Font.Charset = DEFAULT_CHARSET
  13972.         Font.Color = clWindowText
  13973.         Font.Height = -13
  13974.         Font.Name = 'Courier New'
  13975.         Font.Style = [fsBold]
  13976.       end
  13977.       item
  13978.         DisplayName = 'Comment'
  13979.         Font.Charset = DEFAULT_CHARSET
  13980.         Font.Color = clGray
  13981.         Font.Height = -13
  13982.         Font.Name = 'Courier New'
  13983.         Font.Style = [fsItalic]
  13984.       end
  13985.       item
  13986.         DisplayName = 'Variable'
  13987.         Font.Charset = DEFAULT_CHARSET
  13988.         Font.Color = 3302400
  13989.         Font.Height = -13
  13990.         Font.Name = 'Courier New'
  13991.         Font.Style = [fsBold]
  13992.       end
  13993.       item
  13994.         DisplayName = 'Code block'
  13995.         Font.Charset = DEFAULT_CHARSET
  13996.         Font.Color = clNone
  13997.         Font.Height = -13
  13998.         Font.Name = 'Courier New'
  13999.         Font.Style = []
  14000.         BgColor = 15461355
  14001.         FormatType = ftBackGround
  14002.       end
  14003.       item
  14004.         DisplayName = 'Code border'
  14005.         Font.Charset = DEFAULT_CHARSET
  14006.         Font.Color = clFuchsia
  14007.         Font.Height = -13
  14008.         Font.Name = 'Courier New'
  14009.         Font.Style = []
  14010.       end
  14011.       item
  14012.         DisplayName = 'HTML'
  14013.         Font.Charset = DEFAULT_CHARSET
  14014.         Font.Color = clNone
  14015.         Font.Height = -13
  14016.         Font.Name = 'Courier New'
  14017.         Font.Style = []
  14018.         FormatType = ftColor
  14019.       end
  14020.       item
  14021.         DisplayName = 'Functions'
  14022.         Font.Charset = DEFAULT_CHARSET
  14023.         Font.Color = clBlue
  14024.         Font.Height = -13
  14025.         Font.Name = 'Courier New'
  14026.         Font.Style = [fsBold]
  14027.       end
  14028.       item
  14029.         DisplayName = 'Current Block'
  14030.         Font.Charset = DEFAULT_CHARSET
  14031.         Font.Color = clRed
  14032.         Font.Height = -13
  14033.         Font.Name = 'Courier New'
  14034.         Font.Style = []
  14035.         BgColor = clCaptionText
  14036.         FormatType = ftColor
  14037.       end>
  14038.     TokenRules = <
  14039.       item
  14040.         DisplayName = 'Code block start'
  14041.         StyleName = 'Code border'
  14042.         TokenType = 9
  14043.         Expression = '<\?(php)?'#13#10
  14044.         ColumnFrom = 0
  14045.         ColumnTo = 0
  14046.       end
  14047.       item
  14048.         DisplayName = 'Code block end'
  14049.         StyleName = 'Code border'
  14050.         TokenType = 10
  14051.         Expression = '\?>'#13#10
  14052.         ColumnFrom = 0
  14053.         ColumnTo = 0
  14054.       end
  14055.       item
  14056.         DisplayName = 'Comment 1'
  14057.         StyleName = 'Comment'
  14058.         TokenType = 1
  14059.         Expression = '(?s)/\*.*?(\*/|\Z)'
  14060.         ColumnFrom = 0
  14061.         ColumnTo = 0
  14062.       end
  14063.       item
  14064.         DisplayName = 'Comment 2'
  14065.         StyleName = 'Comment'
  14066.         TokenType = 1
  14067.         Expression = '\#.*'#13#10
  14068.         ColumnFrom = 0
  14069.         ColumnTo = 0
  14070.       end
  14071.       item
  14072.         DisplayName = 'Comment 3'
  14073.         StyleName = 'Comment'
  14074.         TokenType = 1
  14075.         Expression = '//.*'
  14076.         ColumnFrom = 0
  14077.         ColumnTo = 0
  14078.       end
  14079.       item
  14080.         DisplayName = 'String'
  14081.         StyleName = 'String'
  14082.         TokenType = 4
  14083.         Expression = '(?s)(["'#39'])(\1|.*?[^\\]\1|.*?(\\\\)+\1)'
  14084.         ColumnFrom = 0
  14085.         ColumnTo = 0
  14086.       end
  14087.       item
  14088.         DisplayName = 'String3'
  14089.         StyleName = 'String'
  14090.         TokenType = 4
  14091.         Expression = '(?s)<<<\s*(\w+$).*?^(\1);'
  14092.         ColumnFrom = 0
  14093.         ColumnTo = 0
  14094.       end
  14095.       item
  14096.         DisplayName = 'Variable'
  14097.         StyleName = 'Variable'
  14098.         TokenType = 2
  14099.         Expression = '\$\w*(->?\w*)*'#13#10
  14100.         ColumnFrom = 0
  14101.         ColumnTo = 0
  14102.       end
  14103.       item
  14104.         DisplayName = 'Any name'
  14105.         StyleName = 'Identifier'
  14106.         TokenType = 2
  14107.         Expression = '[a-z_]\w*'
  14108.         ColumnFrom = 0
  14109.         ColumnTo = 0
  14110.       end
  14111.       item
  14112.         DisplayName = 'Float'
  14113.         StyleName = 'Number'
  14114.         TokenType = 6
  14115.         Expression = '\d+ \.? \d+ e [\+\-]? \d+ |'#13#10'\d+ \. \d+'
  14116.         ColumnFrom = 0
  14117.         ColumnTo = 0
  14118.       end
  14119.       item
  14120.         DisplayName = 'Integer'
  14121.         StyleName = 'Number'
  14122.         TokenType = 5
  14123.         Expression = '\d+'
  14124.         ColumnFrom = 0
  14125.         ColumnTo = 0
  14126.       end
  14127.       item
  14128.         DisplayName = 'Single symbol'
  14129.         StyleName = 'Symbol'
  14130.         TokenType = 3
  14131.         Expression = '[\{\}\(\)\[\],;\.]'
  14132.         ColumnFrom = 0
  14133.         ColumnTo = 0
  14134.       end
  14135.       item
  14136.         DisplayName = 'Symbol'
  14137.         StyleName = 'Symbol'
  14138.         TokenType = 3
  14139.         Expression = '[!/\+\-\*:=<>&/\|\^~]'
  14140.         ColumnFrom = 0
  14141.         ColumnTo = 0
  14142.       end>
  14143.     BlockRules = <
  14144.       item
  14145.         DisplayName = 'Key words'
  14146.         StyleName = 'Reserved word'
  14147.         BlockType = btTagDetect
  14148.         ConditionList = <
  14149.           item
  14150.             TagList.Strings = (
  14151.               '__CLASS__'
  14152.               '__FILE__'
  14153.               '__FUNCTION__'
  14154.               '__LINE__'
  14155.               '__METHOD__'
  14156.               'abstract'
  14157.               'and'
  14158.               'array()'
  14159.               'as'
  14160.               'break'
  14161.               'case'
  14162.               'catch'
  14163.               'cfunction'
  14164.               'class'
  14165.               'clone'
  14166.               'const'
  14167.               'continue'
  14168.               'declare'
  14169.               'default'
  14170.               'die'
  14171.               'do'
  14172.               'echo'
  14173.               'else'
  14174.               'elseif'
  14175.               'empty'
  14176.               'enddeclare'
  14177.               'endfor'
  14178.               'endforeach'
  14179.               'endif'
  14180.               'endswitch'
  14181.               'endwhile'
  14182.               'eval'
  14183.               'exception'
  14184.               'exit'
  14185.               'extends'
  14186.               'false'
  14187.               'final'
  14188.               'for'
  14189.               'foreach'
  14190.               'function'
  14191.               'global'
  14192.               'if'
  14193.               'implements'
  14194.               'include'
  14195.               'include_once'
  14196.               'instanceof'
  14197.               'interface'
  14198.               'isset'
  14199.               'list'
  14200.               'new'
  14201.               'old_function'
  14202.               'or'
  14203.               'php_user_filter'
  14204.               'print'
  14205.               'private'
  14206.               'protected'
  14207.               'public'
  14208.               'require'
  14209.               'require_once'
  14210.               'return'
  14211.               'static'
  14212.               'switch'
  14213.               'throw'
  14214.               'true'
  14215.               'try'
  14216.               'unset'
  14217.               'use'
  14218.               'var'
  14219.               'while'
  14220.               'xor')
  14221.             TokenTypes = 4
  14222.             IgnoreCase = True
  14223.           end>
  14224.         HighlightPos = cpAny
  14225.         IgnoreAsParent = False
  14226.       end
  14227.       item
  14228.         DisplayName = 'Begin'
  14229.         StyleName = 'Current Block'
  14230.         ConditionList = <
  14231.           item
  14232.             TagList.Strings = (
  14233.               '('
  14234.               '['
  14235.               '{')
  14236.             TokenTypes = 8
  14237.           end>
  14238.         BlockEnd = 'End'
  14239.         DisplayInTree = False
  14240.         DynHighlight = dhBound
  14241.         HighlightPos = cpRange
  14242.         DynSelectMin = True
  14243.         DrawStaple = True
  14244.         IgnoreAsParent = False
  14245.       end
  14246.       item
  14247.         DisplayName = 'End'
  14248.         BlockType = btRangeEnd
  14249.         ConditionList = <
  14250.           item
  14251.             TagList.Strings = (
  14252.               ')'
  14253.               ']'
  14254.               '}')
  14255.             TokenTypes = 8
  14256.           end>
  14257.         HighlightPos = cpAny
  14258.         IgnoreAsParent = False
  14259.       end
  14260.       item
  14261.         DisplayName = 'Code block start'
  14262.         StyleName = 'Code block'
  14263.         ConditionList = <
  14264.           item
  14265.             TokenTypes = 512
  14266.           end>
  14267.         BlockEnd = 'Code block end'
  14268.         DisplayInTree = False
  14269.         DynHighlight = dhRange
  14270.         HighlightPos = cpAny
  14271.         IgnoreAsParent = False
  14272.       end
  14273.       item
  14274.         DisplayName = 'Code block end'
  14275.         BlockType = btRangeEnd
  14276.         ConditionList = <
  14277.           item
  14278.             TokenTypes = 1024
  14279.           end>
  14280.         HighlightPos = cpAny
  14281.         IgnoreAsParent = False
  14282.       end
  14283.       item
  14284.         DisplayName = 'Functions'
  14285.         StyleName = 'Functions'
  14286.         BlockType = btTagDetect
  14287.         ConditionList = <
  14288.           item
  14289.             TagList.Strings = (
  14290.               'abs'
  14291.               'acos'
  14292.               'acosh'
  14293.               'addcslashes'
  14294.               'addslashes'
  14295.               'aggregate'
  14296.               'aggregate_info'
  14297.               'aggregate_methods'
  14298.               'aggregate_methods_by_list'
  14299.               'aggregate_methods_by_regexp'
  14300.               'aggregate_properties'
  14301.               'aggregate_properties_by_list'
  14302.               'aggregate_properties_by_regexp'
  14303.               'aggregation_info'
  14304.               'apache_child_terminate'
  14305.               'apache_lookup_uri'
  14306.               'apache_note'
  14307.               'apache_request_headers'
  14308.               'apache_response_headers'
  14309.               'apache_setenv'
  14310.               'array'
  14311.               'array_change_key_case'
  14312.               'array_chunk'
  14313.               'array_combine'
  14314.               'array_count_values'
  14315.               'array_diff'
  14316.               'array_diff_assoc'
  14317.               'array_fill'
  14318.               'array_filter'
  14319.               'array_flip'
  14320.               'array_intersect'
  14321.               'array_intersect_assoc'
  14322.               'array_key_exists'
  14323.               'array_keys'
  14324.               'array_map'
  14325.               'array_merge'
  14326.               'array_merge_recursive'
  14327.               'array_multisort'
  14328.               'array_pad'
  14329.               'array_pop'
  14330.               'array_push'
  14331.               'array_rand'
  14332.               'array_reduce'
  14333.               'array_reverse'
  14334.               'array_search'
  14335.               'array_shift'
  14336.               'array_slice'
  14337.               'array_splice'
  14338.               'array_sum'
  14339.               'array_unique'
  14340.               'array_unshift'
  14341.               'array_values'
  14342.               'array_walk'
  14343.               'arsort'
  14344.               'ascii2ebcdic'
  14345.               'asin'
  14346.               'asinh'
  14347.               'asort'
  14348.               'aspell_check'
  14349.               'aspell_check_raw'
  14350.               'aspell_new'
  14351.               'aspell_suggest'
  14352.               'assert'
  14353.               'assert_options'
  14354.               'atan'
  14355.               'atan2'
  14356.               'atanh'
  14357.               'base_convert'
  14358.               'base64_decode'
  14359.               'base64_encode'
  14360.               'basename'
  14361.               'bcadd'
  14362.               'bccomp'
  14363.               'bcdiv'
  14364.               'bcmod'
  14365.               'bcmul'
  14366.               'bcpow'
  14367.               'bcpowmod'
  14368.               'bcscale'
  14369.               'bcsqrt'
  14370.               'bcsub'
  14371.               'bin2hex'
  14372.               'bind_textdomain_codeset'
  14373.               'bindec'
  14374.               'bindtextdomain'
  14375.               'bzclose'
  14376.               'bzcompress'
  14377.               'bzdecompress'
  14378.               'bzerrno'
  14379.               'bzerror'
  14380.               'bzerrstr'
  14381.               'bzflush'
  14382.               'bzopen'
  14383.               'bzread'
  14384.               'bzwrite'
  14385.               'cal_days_in_month'
  14386.               'cal_from_jd'
  14387.               'cal_info'
  14388.               'cal_to_jd'
  14389.               'call_user_func'
  14390.               'call_user_func_array'
  14391.               'call_user_method'
  14392.               'call_user_method_array'
  14393.               'ccvs_add'
  14394.               'ccvs_auth'
  14395.               'ccvs_command'
  14396.               'ccvs_count'
  14397.               'ccvs_delete'
  14398.               'ccvs_done'
  14399.               'ccvs_init'
  14400.               'ccvs_lookup'
  14401.               'ccvs_new'
  14402.               'ccvs_report'
  14403.               'ccvs_return'
  14404.               'ccvs_reverse'
  14405.               'ccvs_sale'
  14406.               'ccvs_status'
  14407.               'ccvs_textvalue'
  14408.               'ccvs_void'
  14409.               'ceil'
  14410.               'chdir'
  14411.               'checkdate'
  14412.               'checkdnsrr'
  14413.               'chgrp'
  14414.               'chmod'
  14415.               'chop'
  14416.               'chown'
  14417.               'chr'
  14418.               'chroot'
  14419.               'chunk_split'
  14420.               'class_exists'
  14421.               'clearstatcache'
  14422.               'closedir'
  14423.               'closelog'
  14424.               'com_addref'
  14425.               'com_get'
  14426.               'com_invoke'
  14427.               'com_isenum'
  14428.               'com_load'
  14429.               'com_load_typelib'
  14430.               'com_propget'
  14431.               'com_propput'
  14432.               'com_propset'
  14433.               'com_release'
  14434.               'com_set'
  14435.               'compact'
  14436.               'connection_aborted'
  14437.               'connection_status'
  14438.               'connection_timeout'
  14439.               'constant'
  14440.               'convert_cyr_string'
  14441.               'copy'
  14442.               'cos'
  14443.               'cosh'
  14444.               'count'
  14445.               'count_chars'
  14446.               'cpdf_add_annotation'
  14447.               'cpdf_add_outline'
  14448.               'cpdf_arc'
  14449.               'cpdf_begin_text'
  14450.               'cpdf_circle'
  14451.               'cpdf_clip'
  14452.               'cpdf_close'
  14453.               'cpdf_closepath'
  14454.               'cpdf_closepath_fill_stroke'
  14455.               'cpdf_closepath_stroke'
  14456.               'cpdf_continue_text'
  14457.               'cpdf_curveto'
  14458.               'cpdf_end_text'
  14459.               'cpdf_fill'
  14460.               'cpdf_fill_stroke'
  14461.               'cpdf_finalize'
  14462.               'cpdf_finalize_page'
  14463.               'cpdf_global_set_document_limits'
  14464.               'cpdf_import_jpeg'
  14465.               'cpdf_lineto'
  14466.               'cpdf_moveto'
  14467.               'cpdf_newpath'
  14468.               'cpdf_open'
  14469.               'cpdf_output_buffer'
  14470.               'cpdf_page_init'
  14471.               'cpdf_place_inline_image'
  14472.               'cpdf_rect'
  14473.               'cpdf_restore'
  14474.               'cpdf_rlineto'
  14475.               'cpdf_rmoveto'
  14476.               'cpdf_rotate'
  14477.               'cpdf_rotate_text'
  14478.               'cpdf_save'
  14479.               'cpdf_save_to_file'
  14480.               'cpdf_scale'
  14481.               'cpdf_set_action_url'
  14482.               'cpdf_set_char_spacing'
  14483.               'cpdf_set_creator'
  14484.               'cpdf_set_current_page'
  14485.               'cpdf_set_font'
  14486.               'cpdf_set_font_directories'
  14487.               'cpdf_set_font_map_file'
  14488.               'cpdf_set_horiz_scaling'
  14489.               'cpdf_set_keywords'
  14490.               'cpdf_set_leading'
  14491.               'cpdf_set_page_animation'
  14492.               'cpdf_set_subject'
  14493.               'cpdf_set_text_matrix'
  14494.               'cpdf_set_text_pos'
  14495.               'cpdf_set_text_rendering'
  14496.               'cpdf_set_text_rise'
  14497.               'cpdf_set_title'
  14498.               'cpdf_set_viewer_preferences'
  14499.               'cpdf_set_word_spacing'
  14500.               'cpdf_setdash'
  14501.               'cpdf_setflat'
  14502.               'cpdf_setgray'
  14503.               'cpdf_setgray_fill'
  14504.               'cpdf_setgray_stroke'
  14505.               'cpdf_setlinecap'
  14506.               'cpdf_setlinejoin'
  14507.               'cpdf_setlinewidth'
  14508.               'cpdf_setmiterlimit'
  14509.               'cpdf_setrgbcolor'
  14510.               'cpdf_setrgbcolor_fill'
  14511.               'cpdf_setrgbcolor_stroke'
  14512.               'cpdf_show'
  14513.               'cpdf_show_xy'
  14514.               'cpdf_stringwidth'
  14515.               'cpdf_stroke'
  14516.               'cpdf_text'
  14517.               'cpdf_translate'
  14518.               'crack_check'
  14519.               'crack_closedict'
  14520.               'crack_getlastmessage'
  14521.               'crack_opendict'
  14522.               'crc32'
  14523.               'create_function'
  14524.               'crypt'
  14525.               'ctype_alnum'
  14526.               'ctype_alpha'
  14527.               'ctype_cntrl'
  14528.               'ctype_digit'
  14529.               'ctype_graph'
  14530.               'ctype_lower'
  14531.               'ctype_print'
  14532.               'ctype_punct'
  14533.               'ctype_space'
  14534.               'ctype_upper'
  14535.               'ctype_xdigit'
  14536.               'curl_close'
  14537.               'curl_errno'
  14538.               'curl_error'
  14539.               'curl_exec'
  14540.               'curl_getinfo'
  14541.               'curl_init'
  14542.               'curl_multi_add_handle'
  14543.               'curl_multi_close'
  14544.               'curl_multi_exec'
  14545.               'curl_multi_getcontent'
  14546.               'curl_multi_info_read'
  14547.               'curl_multi_init'
  14548.               'curl_multi_remove_handle'
  14549.               'curl_multi_select'
  14550.               'curl_setopt'
  14551.               'curl_version'
  14552.               'current'
  14553.               'cybercash_base64_decode'
  14554.               'cybercash_base64_encode'
  14555.               'cybercash_decr'
  14556.               'cybercash_encr'
  14557.               'cyrus_authenticate'
  14558.               'cyrus_bind'
  14559.               'cyrus_close'
  14560.               'cyrus_connect'
  14561.               'cyrus_query'
  14562.               'cyrus_unbind'
  14563.               'date'
  14564.               'dba_close'
  14565.               'dba_delete'
  14566.               'dba_exists'
  14567.               'dba_fetch'
  14568.               'dba_firstkey'
  14569.               'dba_handlers'
  14570.               'dba_insert'
  14571.               'dba_list'
  14572.               'dba_nextkey'
  14573.               'dba_open'
  14574.               'dba_optimize'
  14575.               'dba_popen'
  14576.               'dba_replace'
  14577.               'dba_sync'
  14578.               'dbase_add_record'
  14579.               'dbase_close'
  14580.               'dbase_create'
  14581.               'dbase_delete_record'
  14582.               'dbase_get_record'
  14583.               'dbase_get_record_with_names'
  14584.               'dbase_numfields'
  14585.               'dbase_numrecords'
  14586.               'dbase_open'
  14587.               'dbase_pack'
  14588.               'dbase_replace_record'
  14589.               'dblist'
  14590.               'dbmclose'
  14591.               'dbmdelete'
  14592.               'dbmexists'
  14593.               'dbmfetch'
  14594.               'dbmfirstkey'
  14595.               'dbminsert'
  14596.               'dbmnextkey'
  14597.               'dbmopen'
  14598.               'dbmreplace'
  14599.               'dbplus_add'
  14600.               'dbplus_aql'
  14601.               'dbplus_chdir'
  14602.               'dbplus_close'
  14603.               'dbplus_curr'
  14604.               'dbplus_errcode'
  14605.               'dbplus_errno'
  14606.               'dbplus_find'
  14607.               'dbplus_first'
  14608.               'dbplus_flush'
  14609.               'dbplus_freealllocks'
  14610.               'dbplus_freelock'
  14611.               'dbplus_freerlocks'
  14612.               'dbplus_getlock'
  14613.               'dbplus_getunique'
  14614.               'dbplus_info'
  14615.               'dbplus_last'
  14616.               'dbplus_lockrel'
  14617.               'dbplus_next'
  14618.               'dbplus_open'
  14619.               'dbplus_prev'
  14620.               'dbplus_rchperm'
  14621.               'dbplus_rcreate'
  14622.               'dbplus_rcrtexact'
  14623.               'dbplus_rcrtlike'
  14624.               'dbplus_resolve'
  14625.               'dbplus_restorepos'
  14626.               'dbplus_rkeys'
  14627.               'dbplus_ropen'
  14628.               'dbplus_rquery'
  14629.               'dbplus_rrename'
  14630.               'dbplus_rsecindex'
  14631.               'dbplus_runlink'
  14632.               'dbplus_rzap'
  14633.               'dbplus_savepos'
  14634.               'dbplus_setindex'
  14635.               'dbplus_setindexbynumber'
  14636.               'dbplus_sql'
  14637.               'dbplus_tcl'
  14638.               'dbplus_tremove'
  14639.               'dbplus_undo'
  14640.               'dbplus_undoprepare'
  14641.               'dbplus_unlockrel'
  14642.               'dbplus_unselect'
  14643.               'dbplus_update'
  14644.               'dbplus_xlockrel'
  14645.               'dbplus_xunlockrel'
  14646.               'dbx_close'
  14647.               'dbx_compare'
  14648.               'dbx_connect'
  14649.               'dbx_error'
  14650.               'dbx_escape_string'
  14651.               'dbx_query'
  14652.               'dbx_sort'
  14653.               'dcgettext'
  14654.               'dcngettext'
  14655.               'deaggregate'
  14656.               'debug_backtrace'
  14657.               'debug_print_backtrace'
  14658.               'debugger_off'
  14659.               'debugger_on'
  14660.               'decbin'
  14661.               'dechex'
  14662.               'decoct'
  14663.               'define'
  14664.               'define_syslog_variables'
  14665.               'defined'
  14666.               'deg2rad'
  14667.               'delete'
  14668.               'dgettext'
  14669.               'die'
  14670.               'dio_close'
  14671.               'dio_fcntl'
  14672.               'dio_open'
  14673.               'dio_read'
  14674.               'dio_seek'
  14675.               'dio_stat'
  14676.               'dio_tcsetattr'
  14677.               'dio_truncate'
  14678.               'dio_write'
  14679.               'dir'
  14680.               'dirname'
  14681.               'disk_free_space'
  14682.               'disk_total_space'
  14683.               'diskfreespace'
  14684.               'dl'
  14685.               'dngettext'
  14686.               'dns_check_record'
  14687.               'dns_get_mx'
  14688.               'dns_get_record'
  14689.               'domxml_new_doc'
  14690.               'domxml_open_file'
  14691.               'domxml_open_mem'
  14692.               'domxml_version'
  14693.               'domxml_xmltree'
  14694.               'domxml_xslt_stylesheet'
  14695.               'domxml_xslt_stylesheet_doc'
  14696.               'domxml_xslt_stylesheet_file'
  14697.               'dotnet_load'
  14698.               'doubleval'
  14699.               'each'
  14700.               'easter_date'
  14701.               'easter_days'
  14702.               'ebcdic2ascii'
  14703.               'echo'
  14704.               'empty'
  14705.               'end'
  14706.               'ereg'
  14707.               'ereg_replace'
  14708.               'eregi'
  14709.               'eregi_replace'
  14710.               'error_log'
  14711.               'error_reporting'
  14712.               'escapeshellarg'
  14713.               'escapeshellcmd'
  14714.               'eval'
  14715.               'exec'
  14716.               'exif_imagetype'
  14717.               'exif_read_data'
  14718.               'exif_thumbnail'
  14719.               'exit'
  14720.               'exp'
  14721.               'explode'
  14722.               'expm1'
  14723.               'extension_loaded'
  14724.               'extract'
  14725.               'ezmlm_hash'
  14726.               'fbsql_affected_rows'
  14727.               'fbsql_autocommit'
  14728.               'fbsql_change_user'
  14729.               'fbsql_close'
  14730.               'fbsql_commit'
  14731.               'fbsql_connect'
  14732.               'fbsql_create_blob'
  14733.               'fbsql_create_clob'
  14734.               'fbsql_create_db'
  14735.               'fbsql_data_seek'
  14736.               'fbsql_database'
  14737.               'fbsql_database_password'
  14738.               'fbsql_db_query'
  14739.               'fbsql_db_status'
  14740.               'fbsql_drop_db'
  14741.               'fbsql_errno'
  14742.               'fbsql_error'
  14743.               'fbsql_fetch_array'
  14744.               'fbsql_fetch_assoc'
  14745.               'fbsql_fetch_field'
  14746.               'fbsql_fetch_lengths'
  14747.               'fbsql_fetch_object'
  14748.               'fbsql_fetch_row'
  14749.               'fbsql_field_flags'
  14750.               'fbsql_field_len'
  14751.               'fbsql_field_name'
  14752.               'fbsql_field_seek'
  14753.               'fbsql_field_table'
  14754.               'fbsql_field_type'
  14755.               'fbsql_free_result'
  14756.               'fbsql_get_autostart_info'
  14757.               'fbsql_hostname'
  14758.               'fbsql_insert_id'
  14759.               'fbsql_list_dbs'
  14760.               'fbsql_list_fields'
  14761.               'fbsql_list_tables'
  14762.               'fbsql_next_result'
  14763.               'fbsql_num_fields'
  14764.               'fbsql_num_rows'
  14765.               'fbsql_password'
  14766.               'fbsql_pconnect'
  14767.               'fbsql_query'
  14768.               'fbsql_read_blob'
  14769.               'fbsql_read_clob'
  14770.               'fbsql_result'
  14771.               'fbsql_rollback'
  14772.               'fbsql_select_db'
  14773.               'fbsql_set_lob_mode'
  14774.               'fbsql_set_transaction'
  14775.               'fbsql_start_db'
  14776.               'fbsql_stop_db'
  14777.               'fbsql_tablename'
  14778.               'fbsql_username'
  14779.               'fbsql_warnings'
  14780.               'fclose'
  14781.               'fdf_add_doc_javascript'
  14782.               'fdf_add_template'
  14783.               'fdf_close'
  14784.               'fdf_create'
  14785.               'fdf_enum_values'
  14786.               'fdf_errno'
  14787.               'fdf_error'
  14788.               'fdf_get_ap'
  14789.               'fdf_get_attachment'
  14790.               'fdf_get_encoding'
  14791.               'fdf_get_file'
  14792.               'fdf_get_flags'
  14793.               'fdf_get_opt'
  14794.               'fdf_get_status'
  14795.               'fdf_get_value'
  14796.               'fdf_get_version'
  14797.               'fdf_header'
  14798.               'fdf_next_field_name'
  14799.               'fdf_open'
  14800.               'fdf_open_string'
  14801.               'fdf_remove_item'
  14802.               'fdf_save'
  14803.               'fdf_save_string'
  14804.               'fdf_set_ap'
  14805.               'fdf_set_encoding'
  14806.               'fdf_set_file'
  14807.               'fdf_set_flags'
  14808.               'fdf_set_javascript_action'
  14809.               'fdf_set_opt'
  14810.               'fdf_set_status'
  14811.               'fdf_set_submit_form_action'
  14812.               'fdf_set_target_frame'
  14813.               'fdf_set_value'
  14814.               'fdf_set_version'
  14815.               'feof'
  14816.               'fflush'
  14817.               'fgetc'
  14818.               'fgetcsv'
  14819.               'fgets'
  14820.               'fgetss'
  14821.               'file'
  14822.               'file_exists'
  14823.               'file_get_contents'
  14824.               'file_put_contents'
  14825.               'fileatime'
  14826.               'filectime'
  14827.               'filegroup'
  14828.               'fileinode'
  14829.               'filemtime'
  14830.               'fileowner'
  14831.               'fileperms'
  14832.               'filepro'
  14833.               'filepro_fieldcount'
  14834.               'filepro_fieldname'
  14835.               'filepro_fieldtype'
  14836.               'filepro_fieldwidth'
  14837.               'filepro_retrieve'
  14838.               'filepro_rowcount'
  14839.               'filesize'
  14840.               'filetype'
  14841.               'floatval'
  14842.               'flock'
  14843.               'floor'
  14844.               'flush'
  14845.               'fmod'
  14846.               'fnmatch'
  14847.               'fopen'
  14848.               'fpassthru'
  14849.               'fprintf'
  14850.               'fputs'
  14851.               'fread'
  14852.               'frenchtojd'
  14853.               'fribidi_log2vis'
  14854.               'fscanf'
  14855.               'fseek'
  14856.               'fsockopen'
  14857.               'fstat'
  14858.               'ftell'
  14859.               'ftok'
  14860.               'ftp_cdup'
  14861.               'ftp_chdir'
  14862.               'ftp_chmod'
  14863.               'ftp_close'
  14864.               'ftp_connect'
  14865.               'ftp_delete'
  14866.               'ftp_exec'
  14867.               'ftp_fget'
  14868.               'ftp_fput'
  14869.               'ftp_get'
  14870.               'ftp_get_option'
  14871.               'ftp_login'
  14872.               'ftp_mdtm'
  14873.               'ftp_mkdir'
  14874.               'ftp_nb_continue'
  14875.               'ftp_nb_fget'
  14876.               'ftp_nb_fput'
  14877.               'ftp_nb_get'
  14878.               'ftp_nb_put'
  14879.               'ftp_nlist'
  14880.               'ftp_pasv'
  14881.               'ftp_put'
  14882.               'ftp_pwd'
  14883.               'ftp_quit'
  14884.               'ftp_raw'
  14885.               'ftp_rawlist'
  14886.               'ftp_rename'
  14887.               'ftp_rmdir'
  14888.               'ftp_set_option'
  14889.               'ftp_site'
  14890.               'ftp_size'
  14891.               'ftp_ssl_connect'
  14892.               'ftp_systype'
  14893.               'ftruncate'
  14894.               'func_get_arg'
  14895.               'func_get_args'
  14896.               'func_num_args'
  14897.               'function_exists'
  14898.               'fwrite'
  14899.               'gd_info'
  14900.               'get_browser'
  14901.               'get_cfg_var'
  14902.               'get_class'
  14903.               'get_class_methods'
  14904.               'get_class_vars'
  14905.               'get_current_user'
  14906.               'get_declared_classes'
  14907.               'get_defined_constants'
  14908.               'get_defined_functions'
  14909.               'get_defined_vars'
  14910.               'get_extension_funcs'
  14911.               'get_html_translation_table'
  14912.               'get_include_path'
  14913.               'get_included_files'
  14914.               'get_loaded_extensions'
  14915.               'get_magic_quotes_gpc'
  14916.               'get_magic_quotes_runtime'
  14917.               'get_meta_tags'
  14918.               'get_object_vars'
  14919.               'get_parent_class'
  14920.               'get_required_files'
  14921.               'get_resource_type'
  14922.               'getallheaders'
  14923.               'getcwd'
  14924.               'getdate'
  14925.               'getenv'
  14926.               'gethostbyaddr'
  14927.               'gethostbyname'
  14928.               'gethostbynamel'
  14929.               'getimagesize'
  14930.               'getlastmod'
  14931.               'getmxrr'
  14932.               'getmygid'
  14933.               'getmyinode'
  14934.               'getmypid'
  14935.               'getmyuid'
  14936.               'getopt'
  14937.               'getprotobyname'
  14938.               'getprotobynumber'
  14939.               'getrandmax'
  14940.               'getrusage'
  14941.               'getservbyname'
  14942.               'getservbyport'
  14943.               'gettext'
  14944.               'gettimeofday'
  14945.               'gettype'
  14946.               'glob'
  14947.               'gmdate'
  14948.               'gmmktime'
  14949.               'gmp_abs'
  14950.               'gmp_add'
  14951.               'gmp_and'
  14952.               'gmp_clrbit'
  14953.               'gmp_cmp'
  14954.               'gmp_com'
  14955.               'gmp_div'
  14956.               'gmp_div_q'
  14957.               'gmp_div_qr'
  14958.               'gmp_div_r'
  14959.               'gmp_divexact'
  14960.               'gmp_fact'
  14961.               'gmp_gcd'
  14962.               'gmp_gcdext'
  14963.               'gmp_hamdist'
  14964.               'gmp_init'
  14965.               'gmp_intval'
  14966.               'gmp_invert'
  14967.               'gmp_jacobi'
  14968.               'gmp_legendre'
  14969.               'gmp_mod'
  14970.               'gmp_mul'
  14971.               'gmp_neg'
  14972.               'gmp_or'
  14973.               'gmp_perfect_square'
  14974.               'gmp_popcount'
  14975.               'gmp_pow'
  14976.               'gmp_powm'
  14977.               'gmp_prob_prime'
  14978.               'gmp_random'
  14979.               'gmp_scan0'
  14980.               'gmp_scan1'
  14981.               'gmp_setbit'
  14982.               'gmp_sign'
  14983.               'gmp_sqrt'
  14984.               'gmp_sqrtrm'
  14985.               'gmp_strval'
  14986.               'gmp_sub'
  14987.               'gmp_xor'
  14988.               'gmstrftime'
  14989.               'gregoriantojd'
  14990.               'gzclose'
  14991.               'gzcompress'
  14992.               'gzdeflate'
  14993.               'gzencode'
  14994.               'gzeof'
  14995.               'gzfile'
  14996.               'gzgetc'
  14997.               'gzgets'
  14998.               'gzgetss'
  14999.               'gzinflate'
  15000.               'gzopen'
  15001.               'gzpassthru'
  15002.               'gzputs'
  15003.               'gzread'
  15004.               'gzrewind'
  15005.               'gzseek'
  15006.               'gztell'
  15007.               'gzuncompress'
  15008.               'gzwrite'
  15009.               'header'
  15010.               'headers_sent'
  15011.               'hebrev'
  15012.               'hebrevc'
  15013.               'hexdec'
  15014.               'highlight_file'
  15015.               'highlight_string'
  15016.               'html_entity_decode'
  15017.               'htmlentities'
  15018.               'htmlspecialchars'
  15019.               'hw_array2objrec'
  15020.               'hw_changeobject'
  15021.               'hw_children'
  15022.               'hw_childrenobj'
  15023.               'hw_close'
  15024.               'hw_connect'
  15025.               'hw_connection_info'
  15026.               'hw_cp'
  15027.               'hw_deleteobject'
  15028.               'hw_docbyanchor'
  15029.               'hw_docbyanchorobj'
  15030.               'hw_document_attributes'
  15031.               'hw_document_bodytag'
  15032.               'hw_document_content'
  15033.               'hw_document_setcontent'
  15034.               'hw_document_size'
  15035.               'hw_dummy'
  15036.               'hw_edittext'
  15037.               'hw_error'
  15038.               'hw_errormsg'
  15039.               'hw_free_document'
  15040.               'hw_getanchors'
  15041.               'hw_getanchorsobj'
  15042.               'hw_getandlock'
  15043.               'hw_getchildcoll'
  15044.               'hw_getchildcollobj'
  15045.               'hw_getchilddoccoll'
  15046.               'hw_getchilddoccollobj'
  15047.               'hw_getobject'
  15048.               'hw_getobjectbyquery'
  15049.               'hw_getobjectbyquerycoll'
  15050.               'hw_getobjectbyquerycollobj'
  15051.               'hw_getobjectbyqueryobj'
  15052.               'hw_getparents'
  15053.               'hw_getparentsobj'
  15054.               'hw_getrellink'
  15055.               'hw_getremote'
  15056.               'hw_getremotechildren'
  15057.               'hw_getsrcbydestobj'
  15058.               'hw_gettext'
  15059.               'hw_getusername'
  15060.               'hw_identify'
  15061.               'hw_incollections'
  15062.               'hw_info'
  15063.               'hw_inscoll'
  15064.               'hw_insdoc'
  15065.               'hw_insertanchors'
  15066.               'hw_insertdocument'
  15067.               'hw_insertobject'
  15068.               'hw_mapid'
  15069.               'hw_modifyobject'
  15070.               'hw_mv'
  15071.               'hw_new_document'
  15072.               'hw_objrec2array'
  15073.               'hw_output_document'
  15074.               'hw_pconnect'
  15075.               'hw_pipedocument'
  15076.               'hw_root'
  15077.               'hw_setlinkroot'
  15078.               'hw_stat'
  15079.               'hw_unlock'
  15080.               'hw_who'
  15081.               'hwapi_hgcsp'
  15082.               'hypot'
  15083.               'ibase_add_user'
  15084.               'ibase_blob_add'
  15085.               'ibase_blob_cancel'
  15086.               'ibase_blob_close'
  15087.               'ibase_blob_create'
  15088.               'ibase_blob_echo'
  15089.               'ibase_blob_get'
  15090.               'ibase_blob_import'
  15091.               'ibase_blob_info'
  15092.               'ibase_blob_open'
  15093.               'ibase_close'
  15094.               'ibase_commit'
  15095.               'ibase_connect'
  15096.               'ibase_delete_user'
  15097.               'ibase_errmsg'
  15098.               'ibase_execute'
  15099.               'ibase_fetch_assoc'
  15100.               'ibase_fetch_object'
  15101.               'ibase_fetch_row'
  15102.               'ibase_field_info'
  15103.               'ibase_free_query'
  15104.               'ibase_free_result'
  15105.               'ibase_modify_user'
  15106.               'ibase_num_fields'
  15107.               'ibase_pconnect'
  15108.               'ibase_prepare'
  15109.               'ibase_query'
  15110.               'ibase_rollback'
  15111.               'ibase_timefmt'
  15112.               'ibase_trans'
  15113.               'iconv'
  15114.               'iconv_get_encoding'
  15115.               'iconv_set_encoding'
  15116.               'ifx_affected_rows'
  15117.               'ifx_blobinfile_mode'
  15118.               'ifx_byteasvarchar'
  15119.               'ifx_close'
  15120.               'ifx_connect'
  15121.               'ifx_copy_blob'
  15122.               'ifx_create_blob'
  15123.               'ifx_create_char'
  15124.               'ifx_do'
  15125.               'ifx_error'
  15126.               'ifx_errormsg'
  15127.               'ifx_fetch_row'
  15128.               'ifx_fieldproperties'
  15129.               'ifx_fieldtypes'
  15130.               'ifx_free_blob'
  15131.               'ifx_free_char'
  15132.               'ifx_free_result'
  15133.               'ifx_get_blob'
  15134.               'ifx_get_char'
  15135.               'ifx_getsqlca'
  15136.               'ifx_htmltbl_result'
  15137.               'ifx_nullformat'
  15138.               'ifx_num_fields'
  15139.               'ifx_num_rows'
  15140.               'ifx_pconnect'
  15141.               'ifx_prepare'
  15142.               'ifx_query'
  15143.               'ifx_textasvarchar'
  15144.               'ifx_update_blob'
  15145.               'ifx_update_char'
  15146.               'ifxus_close_slob'
  15147.               'ifxus_create_slob'
  15148.               'ifxus_free_slob'
  15149.               'ifxus_open_slob'
  15150.               'ifxus_read_slob'
  15151.               'ifxus_seek_slob'
  15152.               'ifxus_tell_slob'
  15153.               'ifxus_write_slob'
  15154.               'ignore_user_abort'
  15155.               'image_type_to_mime_type'
  15156.               'image2wbmp'
  15157.               'imagealphablending'
  15158.               'imageantialias'
  15159.               'imagearc'
  15160.               'imagechar'
  15161.               'imagecharup'
  15162.               'imagecolorallocate'
  15163.               'imagecolorallocatealpha'
  15164.               'imagecolorat'
  15165.               'imagecolorclosest'
  15166.               'imagecolorclosestalpha'
  15167.               'imagecolorclosesthwb'
  15168.               'imagecolordeallocate'
  15169.               'imagecolorexact'
  15170.               'imagecolorexactalpha'
  15171.               'imagecolormatch'
  15172.               'imagecolorresolve'
  15173.               'imagecolorresolvealpha'
  15174.               'imagecolorset'
  15175.               'imagecolorsforindex'
  15176.               'imagecolorstotal'
  15177.               'imagecolortransparent'
  15178.               'imagecopy'
  15179.               'imagecopymerge'
  15180.               'imagecopymergegray'
  15181.               'imagecopyresampled'
  15182.               'imagecopyresized'
  15183.               'imagecreate'
  15184.               'imagecreatefromgd'
  15185.               'imagecreatefromgd2'
  15186.               'imagecreatefromgd2part'
  15187.               'imagecreatefromgif'
  15188.               'imagecreatefromjpeg'
  15189.               'imagecreatefrompng'
  15190.               'imagecreatefromstring'
  15191.               'imagecreatefromwbmp'
  15192.               'imagecreatefromxbm'
  15193.               'imagecreatefromxpm'
  15194.               'imagecreatetruecolor'
  15195.               'imagedashedline'
  15196.               'imagedestroy'
  15197.               'imageellipse'
  15198.               'imagefill'
  15199.               'imagefilledarc'
  15200.               'imagefilledellipse'
  15201.               'imagefilledpolygon'
  15202.               'imagefilledrectangle'
  15203.               'imagefilltoborder'
  15204.               'imagefontheight'
  15205.               'imagefontwidth'
  15206.               'imageftbbox'
  15207.               'imagefttext'
  15208.               'imagegammacorrect'
  15209.               'imagegd'
  15210.               'imagegd2'
  15211.               'imagegif'
  15212.               'imageinterlace'
  15213.               'imageistruecolor'
  15214.               'imagejpeg'
  15215.               'imageline'
  15216.               'imageloadfont'
  15217.               'imagepalettecopy'
  15218.               'imagepng'
  15219.               'imagepolygon'
  15220.               'imagepsbbox'
  15221.               'imagepscopyfont'
  15222.               'imagepsencodefont'
  15223.               'imagepsextendfont'
  15224.               'imagepsfreefont'
  15225.               'imagepsloadfont'
  15226.               'imagepsslantfont'
  15227.               'imagepstext'
  15228.               'imagerectangle'
  15229.               'imagerotate'
  15230.               'imagesavealpha'
  15231.               'imagesetbrush'
  15232.               'imagesetpixel'
  15233.               'imagesetstyle'
  15234.               'imagesetthickness'
  15235.               'imagesettile'
  15236.               'imagestring'
  15237.               'imagestringup'
  15238.               'imagesx'
  15239.               'imagesy'
  15240.               'imagetruecolortopalette'
  15241.               'imagettfbbox'
  15242.               'imagettftext'
  15243.               'imagetypes'
  15244.               'imagewbmp'
  15245.               'imap_8bit'
  15246.               'imap_alerts'
  15247.               'imap_append'
  15248.               'imap_base64'
  15249.               'imap_binary'
  15250.               'imap_body'
  15251.               'imap_bodystruct'
  15252.               'imap_check'
  15253.               'imap_clearflag_full'
  15254.               'imap_close'
  15255.               'imap_createmailbox'
  15256.               'imap_delete'
  15257.               'imap_deletemailbox'
  15258.               'imap_errors'
  15259.               'imap_expunge'
  15260.               'imap_fetch_overview'
  15261.               'imap_fetchbody'
  15262.               'imap_fetchheader'
  15263.               'imap_fetchstructure'
  15264.               'imap_get_quota'
  15265.               'imap_get_quotaroot'
  15266.               'imap_getmailboxes'
  15267.               'imap_getsubscribed'
  15268.               'imap_header'
  15269.               'imap_headerinfo'
  15270.               'imap_headers'
  15271.               'imap_last_error'
  15272.               'imap_list'
  15273.               'imap_listmailbox'
  15274.               'imap_listscan'
  15275.               'imap_listsubscribed'
  15276.               'imap_lsub'
  15277.               'imap_mail'
  15278.               'imap_mail_compose'
  15279.               'imap_mail_copy'
  15280.               'imap_mail_move'
  15281.               'imap_mailboxmsginfo'
  15282.               'imap_mime_header_decode'
  15283.               'imap_msgno'
  15284.               'imap_num_msg'
  15285.               'imap_num_recent'
  15286.               'imap_open'
  15287.               'imap_ping'
  15288.               'imap_qprint'
  15289.               'imap_renamemailbox'
  15290.               'imap_reopen'
  15291.               'imap_rfc822_parse_adrlist'
  15292.               'imap_rfc822_parse_headers'
  15293.               'imap_rfc822_write_address'
  15294.               'imap_scanmailbox'
  15295.               'imap_search'
  15296.               'imap_set_quota'
  15297.               'imap_setacl'
  15298.               'imap_setflag_full'
  15299.               'imap_sort'
  15300.               'imap_status'
  15301.               'imap_subscribe'
  15302.               'imap_thread'
  15303.               'imap_uid'
  15304.               'imap_undelete'
  15305.               'imap_unsubscribe'
  15306.               'imap_utf7_decode'
  15307.               'imap_utf7_encode'
  15308.               'imap_utf8'
  15309.               'implode'
  15310.               'import_request_variables'
  15311.               'in_array'
  15312.               'ingres_autocommit'
  15313.               'ingres_close'
  15314.               'ingres_commit'
  15315.               'ingres_connect'
  15316.               'ingres_fetch_array'
  15317.               'ingres_fetch_object'
  15318.               'ingres_fetch_row'
  15319.               'ingres_field_length'
  15320.               'ingres_field_name'
  15321.               'ingres_field_nullable'
  15322.               'ingres_field_precision'
  15323.               'ingres_field_scale'
  15324.               'ingres_field_type'
  15325.               'ingres_num_fields'
  15326.               'ingres_num_rows'
  15327.               'ingres_pconnect'
  15328.               'ingres_query'
  15329.               'ingres_rollback'
  15330.               'ini_alter'
  15331.               'ini_get'
  15332.               'ini_get_all'
  15333.               'ini_restore'
  15334.               'ini_set'
  15335.               'intval'
  15336.               'ip2long'
  15337.               'iptcembed'
  15338.               'iptcparse'
  15339.               'ircg_channel_mode'
  15340.               'ircg_disconnect'
  15341.               'ircg_fetch_error_msg'
  15342.               'ircg_get_username'
  15343.               'ircg_html_encode'
  15344.               'ircg_ignore_add'
  15345.               'ircg_ignore_del'
  15346.               'ircg_is_conn_alive'
  15347.               'ircg_join'
  15348.               'ircg_kick'
  15349.               'ircg_lookup_format_messages'
  15350.               'ircg_msg'
  15351.               'ircg_nick'
  15352.               'ircg_nickname_escape'
  15353.               'ircg_nickname_unescape'
  15354.               'ircg_notice'
  15355.               'ircg_part'
  15356.               'ircg_pconnect'
  15357.               'ircg_register_format_messages'
  15358.               'ircg_set_current'
  15359.               'ircg_set_file'
  15360.               'ircg_set_on_die'
  15361.               'ircg_topic'
  15362.               'ircg_whois'
  15363.               'is_a'
  15364.               'is_array'
  15365.               'is_bool'
  15366.               'is_callable'
  15367.               'is_dir'
  15368.               'is_double'
  15369.               'is_executable'
  15370.               'is_file'
  15371.               'is_finite'
  15372.               'is_float'
  15373.               'is_infinite'
  15374.               'is_int'
  15375.               'is_integer'
  15376.               'is_link'
  15377.               'is_long'
  15378.               'is_nan'
  15379.               'is_null'
  15380.               'is_numeric'
  15381.               'is_object'
  15382.               'is_readable'
  15383.               'is_real'
  15384.               'is_resource'
  15385.               'is_scalar'
  15386.               'is_string'
  15387.               'is_subclass_of'
  15388.               'is_uploaded_file'
  15389.               'is_writable'
  15390.               'is_writeable'
  15391.               'isset'
  15392.               'java_last_exception_clear'
  15393.               'java_last_exception_get'
  15394.               'jddayofweek'
  15395.               'jdmonthname'
  15396.               'jdtofrench'
  15397.               'jdtogregorian'
  15398.               'jdtojewish'
  15399.               'jdtojulian'
  15400.               'jdtounix'
  15401.               'jewishtojd'
  15402.               'join'
  15403.               'jpeg2wbmp'
  15404.               'juliantojd'
  15405.               'key'
  15406.               'krsort'
  15407.               'ksort'
  15408.               'lcg_value'
  15409.               'ldap_8859_to_t61'
  15410.               'ldap_add'
  15411.               'ldap_bind'
  15412.               'ldap_close'
  15413.               'ldap_compare'
  15414.               'ldap_connect'
  15415.               'ldap_count_entries'
  15416.               'ldap_delete'
  15417.               'ldap_dn2ufn'
  15418.               'ldap_err2str'
  15419.               'ldap_errno'
  15420.               'ldap_error'
  15421.               'ldap_explode_dn'
  15422.               'ldap_first_attribute'
  15423.               'ldap_first_entry'
  15424.               'ldap_first_reference'
  15425.               'ldap_free_result'
  15426.               'ldap_get_attributes'
  15427.               'ldap_get_dn'
  15428.               'ldap_get_entries'
  15429.               'ldap_get_option'
  15430.               'ldap_get_values'
  15431.               'ldap_get_values_len'
  15432.               'ldap_list'
  15433.               'ldap_mod_add'
  15434.               'ldap_mod_del'
  15435.               'ldap_mod_replace'
  15436.               'ldap_modify'
  15437.               'ldap_next_attribute'
  15438.               'ldap_next_entry'
  15439.               'ldap_next_reference'
  15440.               'ldap_parse_reference'
  15441.               'ldap_parse_result'
  15442.               'ldap_read'
  15443.               'ldap_rename'
  15444.               'ldap_search'
  15445.               'ldap_set_option'
  15446.               'ldap_set_rebind_proc'
  15447.               'ldap_sort'
  15448.               'ldap_start_tls'
  15449.               'ldap_t61_to_8859'
  15450.               'ldap_unbind'
  15451.               'levenshtein'
  15452.               'link'
  15453.               'linkinfo'
  15454.               'list'
  15455.               'localeconv'
  15456.               'localtime'
  15457.               'log'
  15458.               'log10'
  15459.               'log1p'
  15460.               'long2ip'
  15461.               'lstat'
  15462.               'ltrim'
  15463.               'mail'
  15464.               'mailparse_determine_best_xfer_encoding'
  15465.               'mailparse_msg_create'
  15466.               'mailparse_msg_extract_part'
  15467.               'mailparse_msg_extract_part_file'
  15468.               'mailparse_msg_free'
  15469.               'mailparse_msg_get_part'
  15470.               'mailparse_msg_get_part_data'
  15471.               'mailparse_msg_get_structure'
  15472.               'mailparse_msg_parse'
  15473.               'mailparse_msg_parse_file'
  15474.               'mailparse_rfc822_parse_addresses'
  15475.               'mailparse_stream_encode'
  15476.               'mailparse_uudecode_all'
  15477.               'main'
  15478.               'max'
  15479.               'mb_convert_case'
  15480.               'mb_convert_encoding'
  15481.               'mb_convert_kana'
  15482.               'mb_convert_variables'
  15483.               'mb_decode_mimeheader'
  15484.               'mb_decode_numericentity'
  15485.               'mb_detect_encoding'
  15486.               'mb_detect_order'
  15487.               'mb_encode_mimeheader'
  15488.               'mb_encode_numericentity'
  15489.               'mb_ereg'
  15490.               'mb_ereg_match'
  15491.               'mb_ereg_replace'
  15492.               'mb_ereg_search'
  15493.               'mb_ereg_search_getpos'
  15494.               'mb_ereg_search_getregs'
  15495.               'mb_ereg_search_init'
  15496.               'mb_ereg_search_pos'
  15497.               'mb_ereg_search_regs'
  15498.               'mb_ereg_search_setpos'
  15499.               'mb_eregi'
  15500.               'mb_eregi_replace'
  15501.               'mb_get_info'
  15502.               'mb_http_input'
  15503.               'mb_http_output'
  15504.               'mb_internal_encoding'
  15505.               'mb_language'
  15506.               'mb_output_handler'
  15507.               'mb_parse_str'
  15508.               'mb_preferred_mime_name'
  15509.               'mb_regex_encoding'
  15510.               'mb_regex_set_options'
  15511.               'mb_send_mail'
  15512.               'mb_split'
  15513.               'mb_strcut'
  15514.               'mb_strimwidth'
  15515.               'mb_strlen'
  15516.               'mb_strpos'
  15517.               'mb_strrpos'
  15518.               'mb_strtolower'
  15519.               'mb_strtoupper'
  15520.               'mb_strwidth'
  15521.               'mb_substitute_character'
  15522.               'mb_substr'
  15523.               'mb_substr_count'
  15524.               'mcal_append_event'
  15525.               'mcal_close'
  15526.               'mcal_create_calendar'
  15527.               'mcal_date_compare'
  15528.               'mcal_date_valid'
  15529.               'mcal_day_of_week'
  15530.               'mcal_day_of_year'
  15531.               'mcal_days_in_month'
  15532.               'mcal_delete_calendar'
  15533.               'mcal_delete_event'
  15534.               'mcal_event_add_attribute'
  15535.               'mcal_event_init'
  15536.               'mcal_event_set_alarm'
  15537.               'mcal_event_set_category'
  15538.               'mcal_event_set_class'
  15539.               'mcal_event_set_description'
  15540.               'mcal_event_set_end'
  15541.               'mcal_event_set_recur_daily'
  15542.               'mcal_event_set_recur_monthly_mday'
  15543.               'mcal_event_set_recur_monthly_wday'
  15544.               'mcal_event_set_recur_none'
  15545.               'mcal_event_set_recur_weekly'
  15546.               'mcal_event_set_recur_yearly'
  15547.               'mcal_event_set_start'
  15548.               'mcal_event_set_title'
  15549.               'mcal_expunge'
  15550.               'mcal_fetch_current_stream_event'
  15551.               'mcal_fetch_event'
  15552.               'mcal_is_leap_year'
  15553.               'mcal_list_alarms'
  15554.               'mcal_list_events'
  15555.               'mcal_next_recurrence'
  15556.               'mcal_open'
  15557.               'mcal_popen'
  15558.               'mcal_rename_calendar'
  15559.               'mcal_reopen'
  15560.               'mcal_snooze'
  15561.               'mcal_store_event'
  15562.               'mcal_time_valid'
  15563.               'mcal_week_of_year'
  15564.               'mcrypt_cbc'
  15565.               'mcrypt_cfb'
  15566.               'mcrypt_create_iv'
  15567.               'mcrypt_decrypt'
  15568.               'mcrypt_ecb'
  15569.               'mcrypt_enc_get_algorithms_name'
  15570.               'mcrypt_enc_get_block_size'
  15571.               'mcrypt_enc_get_iv_size'
  15572.               'mcrypt_enc_get_key_size'
  15573.               'mcrypt_enc_get_modes_name'
  15574.               'mcrypt_enc_get_supported_key_sizes'
  15575.               'mcrypt_enc_is_block_algorithm'
  15576.               'mcrypt_enc_is_block_algorithm_mode'
  15577.               'mcrypt_enc_is_block_mode'
  15578.               'mcrypt_enc_self_test'
  15579.               'mcrypt_encrypt'
  15580.               'mcrypt_generic'
  15581.               'mcrypt_generic_deinit'
  15582.               'mcrypt_generic_end'
  15583.               'mcrypt_generic_init'
  15584.               'mcrypt_get_block_size'
  15585.               'mcrypt_get_cipher_name'
  15586.               'mcrypt_get_iv_size'
  15587.               'mcrypt_get_key_size'
  15588.               'mcrypt_list_algorithms'
  15589.               'mcrypt_list_modes'
  15590.               'mcrypt_module_close'
  15591.               'mcrypt_module_get_algo_block_size'
  15592.               'mcrypt_module_get_algo_key_size'
  15593.               'mcrypt_module_get_supported_key_sizes'
  15594.               'mcrypt_module_is_block_algorithm'
  15595.               'mcrypt_module_is_block_algorithm_mode'
  15596.               'mcrypt_module_is_block_mode'
  15597.               'mcrypt_module_open'
  15598.               'mcrypt_module_self_test'
  15599.               'mcrypt_ofb'
  15600.               'mcve_adduser'
  15601.               'mcve_adduserarg'
  15602.               'mcve_bt'
  15603.               'mcve_checkstatus'
  15604.               'mcve_chkpwd'
  15605.               'mcve_chngpwd'
  15606.               'mcve_completeauthorizations'
  15607.               'mcve_connect'
  15608.               'mcve_connectionerror'
  15609.               'mcve_deleteresponse'
  15610.               'mcve_deletetrans'
  15611.               'mcve_deleteusersetup'
  15612.               'mcve_deluser'
  15613.               'mcve_destroyconn'
  15614.               'mcve_destroyengine'
  15615.               'mcve_disableuser'
  15616.               'mcve_edituser'
  15617.               'mcve_enableuser'
  15618.               'mcve_force'
  15619.               'mcve_getcell'
  15620.               'mcve_getcellbynum'
  15621.               'mcve_getcommadelimited'
  15622.               'mcve_getheader'
  15623.               'mcve_getuserarg'
  15624.               'mcve_getuserparam'
  15625.               'mcve_gft'
  15626.               'mcve_gl'
  15627.               'mcve_gut'
  15628.               'mcve_initconn'
  15629.               'mcve_initengine'
  15630.               'mcve_initusersetup'
  15631.               'mcve_iscommadelimited'
  15632.               'mcve_liststats'
  15633.               'mcve_listusers'
  15634.               'mcve_maxconntimeout'
  15635.               'mcve_monitor'
  15636.               'mcve_numcolumns'
  15637.               'mcve_numrows'
  15638.               'mcve_override'
  15639.               'mcve_parsecommadelimited'
  15640.               'mcve_ping'
  15641.               'mcve_preauth'
  15642.               'mcve_preauthcompletion'
  15643.               'mcve_qc'
  15644.               'mcve_responseparam'
  15645.               'mcve_return'
  15646.               'mcve_returncode'
  15647.               'mcve_returnstatus'
  15648.               'mcve_sale'
  15649.               'mcve_setblocking'
  15650.               'mcve_setdropfile'
  15651.               'mcve_setip'
  15652.               'mcve_setssl'
  15653.               'mcve_setssl_files'
  15654.               'mcve_settimeout'
  15655.               'mcve_settle'
  15656.               'mcve_text_avs'
  15657.               'mcve_text_code'
  15658.               'mcve_text_cv'
  15659.               'mcve_transactionauth'
  15660.               'mcve_transactionavs'
  15661.               'mcve_transactionbatch'
  15662.               'mcve_transactioncv'
  15663.               'mcve_transactionid'
  15664.               'mcve_transactionitem'
  15665.               'mcve_transactionssent'
  15666.               'mcve_transactiontext'
  15667.               'mcve_transinqueue'
  15668.               'mcve_transnew'
  15669.               'mcve_transparam'
  15670.               'mcve_transsend'
  15671.               'mcve_ub'
  15672.               'mcve_uwait'
  15673.               'mcve_verifyconnection'
  15674.               'mcve_verifysslcert'
  15675.               'mcve_void'
  15676.               'md5'
  15677.               'md5_file'
  15678.               'mdecrypt_generic'
  15679.               'memory_get_usage'
  15680.               'metaphone'
  15681.               'method_exists'
  15682.               'mhash'
  15683.               'mhash_count'
  15684.               'mhash_get_block_size'
  15685.               'mhash_get_hash_name'
  15686.               'mhash_keygen_s2k'
  15687.               'microtime'
  15688.               'mime_content_type'
  15689.               'min'
  15690.               'ming_setcubicthreshold'
  15691.               'ming_setscale'
  15692.               'ming_useswfversion'
  15693.               'mkdir'
  15694.               'mktime'
  15695.               'money_format'
  15696.               'move_uploaded_file'
  15697.               'msession_connect'
  15698.               'msession_count'
  15699.               'msession_create'
  15700.               'msession_destroy'
  15701.               'msession_disconnect'
  15702.               'msession_find'
  15703.               'msession_get'
  15704.               'msession_get_array'
  15705.               'msession_getdata'
  15706.               'msession_inc'
  15707.               'msession_list'
  15708.               'msession_listvar'
  15709.               'msession_lock'
  15710.               'msession_plugin'
  15711.               'msession_randstr'
  15712.               'msession_set'
  15713.               'msession_set_array'
  15714.               'msession_setdata'
  15715.               'msession_timeout'
  15716.               'msession_uniq'
  15717.               'msession_unlock'
  15718.               'msg_get_queue'
  15719.               'msg_receive'
  15720.               'msg_remove_queue'
  15721.               'msg_send'
  15722.               'msg_set_queue'
  15723.               'msg_stat_queue'
  15724.               'msql'
  15725.               'msql_affected_rows'
  15726.               'msql_close'
  15727.               'msql_connect'
  15728.               'msql_create_db'
  15729.               'msql_createdb'
  15730.               'msql_data_seek'
  15731.               'msql_dbname'
  15732.               'msql_drop_db'
  15733.               'msql_dropdb'
  15734.               'msql_error'
  15735.               'msql_fetch_array'
  15736.               'msql_fetch_field'
  15737.               'msql_fetch_object'
  15738.               'msql_fetch_row'
  15739.               'msql_field_seek'
  15740.               'msql_fieldflags'
  15741.               'msql_fieldlen'
  15742.               'msql_fieldname'
  15743.               'msql_fieldtable'
  15744.               'msql_fieldtype'
  15745.               'msql_free_result'
  15746.               'msql_freeresult'
  15747.               'msql_list_dbs'
  15748.               'msql_list_fields'
  15749.               'msql_list_tables'
  15750.               'msql_listdbs'
  15751.               'msql_listfields'
  15752.               'msql_listtables'
  15753.               'msql_num_fields'
  15754.               'msql_num_rows'
  15755.               'msql_numfields'
  15756.               'msql_numrows'
  15757.               'msql_pconnect'
  15758.               'msql_query'
  15759.               'msql_regcase'
  15760.               'msql_result'
  15761.               'msql_select_db'
  15762.               'msql_selectdb'
  15763.               'msql_tablename'
  15764.               'mssql_bind'
  15765.               'mssql_close'
  15766.               'mssql_connect'
  15767.               'mssql_data_seek'
  15768.               'mssql_execute'
  15769.               'mssql_fetch_array'
  15770.               'mssql_fetch_assoc'
  15771.               'mssql_fetch_batch'
  15772.               'mssql_fetch_field'
  15773.               'mssql_fetch_object'
  15774.               'mssql_fetch_row'
  15775.               'mssql_field_length'
  15776.               'mssql_field_name'
  15777.               'mssql_field_seek'
  15778.               'mssql_field_type'
  15779.               'mssql_free_result'
  15780.               'mssql_free_statement'
  15781.               'mssql_get_last_message'
  15782.               'mssql_guid_string'
  15783.               'mssql_init'
  15784.               'mssql_min_error_severity'
  15785.               'mssql_min_message_severity'
  15786.               'mssql_next_result'
  15787.               'mssql_num_fields'
  15788.               'mssql_num_rows'
  15789.               'mssql_pconnect'
  15790.               'mssql_query'
  15791.               'mssql_result'
  15792.               'mssql_rows_affected'
  15793.               'mssql_select_db'
  15794.               'mt_getrandmax'
  15795.               'mt_rand'
  15796.               'mt_srand'
  15797.               'muscat_close'
  15798.               'muscat_get'
  15799.               'muscat_give'
  15800.               'muscat_setup'
  15801.               'muscat_setup_net'
  15802.               'mysql_affected_rows'
  15803.               'mysql_change_user'
  15804.               'mysql_client_encoding'
  15805.               'mysql_close'
  15806.               'mysql_connect'
  15807.               'mysql_create_db'
  15808.               'mysql_data_seek'
  15809.               'mysql_db_name'
  15810.               'mysql_db_query'
  15811.               'mysql_drop_db'
  15812.               'mysql_errno'
  15813.               'mysql_error'
  15814.               'mysql_escape_string'
  15815.               'mysql_fetch_array'
  15816.               'mysql_fetch_assoc'
  15817.               'mysql_fetch_field'
  15818.               'mysql_fetch_lengths'
  15819.               'mysql_fetch_object'
  15820.               'mysql_fetch_row'
  15821.               'mysql_field_flags'
  15822.               'mysql_field_len'
  15823.               'mysql_field_name'
  15824.               'mysql_field_seek'
  15825.               'mysql_field_table'
  15826.               'mysql_field_type'
  15827.               'mysql_free_result'
  15828.               'mysql_get_client_info'
  15829.               'mysql_get_host_info'
  15830.               'mysql_get_proto_info'
  15831.               'mysql_get_server_info'
  15832.               'mysql_info'
  15833.               'mysql_insert_id'
  15834.               'mysql_list_dbs'
  15835.               'mysql_list_fields'
  15836.               'mysql_list_processes'
  15837.               'mysql_list_tables'
  15838.               'mysql_num_fields'
  15839.               'mysql_num_rows'
  15840.               'mysql_pconnect'
  15841.               'mysql_ping'
  15842.               'mysql_query'
  15843.               'mysql_real_escape_string'
  15844.               'mysql_result'
  15845.               'mysql_select_db'
  15846.               'mysql_stat'
  15847.               'mysql_tablename'
  15848.               'mysql_thread_id'
  15849.               'mysql_unbuffered_query'
  15850.               'mysqli_affected_rows'
  15851.               'mysqli_autocommit'
  15852.               'mysqli_bind_param'
  15853.               'mysqli_bind_result'
  15854.               'mysqli_change_user'
  15855.               'mysqli_character_set_name'
  15856.               'mysqli_close'
  15857.               'mysqli_commit'
  15858.               'mysqli_connect'
  15859.               'mysqli_data_seek'
  15860.               'mysqli_debug'
  15861.               'mysqli_disable_reads_from_master'
  15862.               'mysqli_disable_rpl_parse'
  15863.               'mysqli_dump_debug_info'
  15864.               'mysqli_enable_reads_from_master'
  15865.               'mysqli_enable_rpl_parse'
  15866.               'mysqli_errno'
  15867.               'mysqli_error'
  15868.               'mysqli_execute'
  15869.               'mysqli_fetch'
  15870.               'mysqli_fetch_array'
  15871.               'mysqli_fetch_assoc'
  15872.               'mysqli_fetch_field'
  15873.               'mysqli_fetch_field_direct'
  15874.               'mysqli_fetch_fields'
  15875.               'mysqli_fetch_lengths'
  15876.               'mysqli_fetch_object'
  15877.               'mysqli_fetch_row'
  15878.               'mysqli_field_count'
  15879.               'mysqli_field_seek'
  15880.               'mysqli_field_tell'
  15881.               'mysqli_free_result'
  15882.               'mysqli_get_client_info'
  15883.               'mysqli_get_host_info'
  15884.               'mysqli_get_proto_info'
  15885.               'mysqli_get_server_info'
  15886.               'mysqli_get_server_version'
  15887.               'mysqli_info'
  15888.               'mysqli_init'
  15889.               'mysqli_insert_id'
  15890.               'mysqli_kill'
  15891.               'mysqli_master_query'
  15892.               'mysqli_num_fields'
  15893.               'mysqli_num_rows'
  15894.               'mysqli_options'
  15895.               'mysqli_param_count'
  15896.               'mysqli_ping'
  15897.               'mysqli_prepare'
  15898.               'mysqli_prepare_result'
  15899.               'mysqli_profiler'
  15900.               'mysqli_query'
  15901.               'mysqli_read_query_result'
  15902.               'mysqli_real_connect'
  15903.               'mysqli_real_escape_string'
  15904.               'mysqli_real_query'
  15905.               'mysqli_reload'
  15906.               'mysqli_rollback'
  15907.               'mysqli_rpl_parse_enabled'
  15908.               'mysqli_rpl_probe'
  15909.               'mysqli_rpl_query_type'
  15910.               'mysqli_select_db'
  15911.               'mysqli_send_long_data'
  15912.               'mysqli_send_query'
  15913.               'mysqli_slave_query'
  15914.               'mysqli_ssl_set'
  15915.               'mysqli_stat'
  15916.               'mysqli_stmt_affected_rows'
  15917.               'mysqli_stmt_close'
  15918.               'mysqli_stmt_errno'
  15919.               'mysqli_stmt_error'
  15920.               'mysqli_stmt_store_result'
  15921.               'mysqli_store_result'
  15922.               'mysqli_thread_id'
  15923.               'mysqli_thread_safe'
  15924.               'mysqli_use_result'
  15925.               'mysqli_warning_count'
  15926.               'natcasesort'
  15927.               'natsort'
  15928.               'ncurses_addch'
  15929.               'ncurses_addchnstr'
  15930.               'ncurses_addchstr'
  15931.               'ncurses_addnstr'
  15932.               'ncurses_addstr'
  15933.               'ncurses_assume_default_colors'
  15934.               'ncurses_attroff'
  15935.               'ncurses_attron'
  15936.               'ncurses_attrset'
  15937.               'ncurses_baudrate'
  15938.               'ncurses_beep'
  15939.               'ncurses_bkgd'
  15940.               'ncurses_bkgdset'
  15941.               'ncurses_border'
  15942.               'ncurses_bottom_panel'
  15943.               'ncurses_can_change_color'
  15944.               'ncurses_cbreak'
  15945.               'ncurses_clear'
  15946.               'ncurses_clrtobot'
  15947.               'ncurses_clrtoeol'
  15948.               'ncurses_color_content'
  15949.               'ncurses_color_set'
  15950.               'ncurses_curs_set'
  15951.               'ncurses_def_prog_mode'
  15952.               'ncurses_def_shell_mode'
  15953.               'ncurses_define_key'
  15954.               'ncurses_del_panel'
  15955.               'ncurses_delay_output'
  15956.               'ncurses_delch'
  15957.               'ncurses_deleteln'
  15958.               'ncurses_delwin'
  15959.               'ncurses_doupdate'
  15960.               'ncurses_echo'
  15961.               'ncurses_echochar'
  15962.               'ncurses_end'
  15963.               'ncurses_erase'
  15964.               'ncurses_erasechar'
  15965.               'ncurses_filter'
  15966.               'ncurses_flash'
  15967.               'ncurses_flushinp'
  15968.               'ncurses_getch'
  15969.               'ncurses_getmaxyx'
  15970.               'ncurses_getmouse'
  15971.               'ncurses_getyx'
  15972.               'ncurses_halfdelay'
  15973.               'ncurses_has_colors'
  15974.               'ncurses_has_ic'
  15975.               'ncurses_has_il'
  15976.               'ncurses_has_key'
  15977.               'ncurses_hide_panel'
  15978.               'ncurses_hline'
  15979.               'ncurses_inch'
  15980.               'ncurses_init'
  15981.               'ncurses_init_color'
  15982.               'ncurses_init_pair'
  15983.               'ncurses_insch'
  15984.               'ncurses_insdelln'
  15985.               'ncurses_insertln'
  15986.               'ncurses_insstr'
  15987.               'ncurses_instr'
  15988.               'ncurses_isendwin'
  15989.               'ncurses_keyok'
  15990.               'ncurses_keypad'
  15991.               'ncurses_killchar'
  15992.               'ncurses_longname'
  15993.               'ncurses_meta'
  15994.               'ncurses_mouse_trafo'
  15995.               'ncurses_mouseinterval'
  15996.               'ncurses_mousemask'
  15997.               'ncurses_move'
  15998.               'ncurses_move_panel'
  15999.               'ncurses_mvaddch'
  16000.               'ncurses_mvaddchnstr'
  16001.               'ncurses_mvaddchstr'
  16002.               'ncurses_mvaddnstr'
  16003.               'ncurses_mvaddstr'
  16004.               'ncurses_mvcur'
  16005.               'ncurses_mvdelch'
  16006.               'ncurses_mvgetch'
  16007.               'ncurses_mvhline'
  16008.               'ncurses_mvinch'
  16009.               'ncurses_mvvline'
  16010.               'ncurses_mvwaddstr'
  16011.               'ncurses_napms'
  16012.               'ncurses_new_panel'
  16013.               'ncurses_newpad'
  16014.               'ncurses_newwin'
  16015.               'ncurses_nl'
  16016.               'ncurses_nocbreak'
  16017.               'ncurses_noecho'
  16018.               'ncurses_nonl'
  16019.               'ncurses_noqiflush'
  16020.               'ncurses_noraw'
  16021.               'ncurses_pair_content'
  16022.               'ncurses_panel_above'
  16023.               'ncurses_panel_below'
  16024.               'ncurses_panel_window'
  16025.               'ncurses_pnoutrefresh'
  16026.               'ncurses_prefresh'
  16027.               'ncurses_putp'
  16028.               'ncurses_qiflush'
  16029.               'ncurses_raw'
  16030.               'ncurses_refresh'
  16031.               'ncurses_replace_panel'
  16032.               'ncurses_reset_prog_mode'
  16033.               'ncurses_reset_shell_mode'
  16034.               'ncurses_resetty'
  16035.               'ncurses_savetty'
  16036.               'ncurses_scr_dump'
  16037.               'ncurses_scr_init'
  16038.               'ncurses_scr_restore'
  16039.               'ncurses_scr_set'
  16040.               'ncurses_scrl'
  16041.               'ncurses_show_panel'
  16042.               'ncurses_slk_attr'
  16043.               'ncurses_slk_attroff'
  16044.               'ncurses_slk_attron'
  16045.               'ncurses_slk_attrset'
  16046.               'ncurses_slk_clear'
  16047.               'ncurses_slk_color'
  16048.               'ncurses_slk_init'
  16049.               'ncurses_slk_noutrefresh'
  16050.               'ncurses_slk_refresh'
  16051.               'ncurses_slk_restore'
  16052.               'ncurses_slk_set'
  16053.               'ncurses_slk_touch'
  16054.               'ncurses_standend'
  16055.               'ncurses_standout'
  16056.               'ncurses_start_color'
  16057.               'ncurses_termattrs'
  16058.               'ncurses_termname'
  16059.               'ncurses_timeout'
  16060.               'ncurses_top_panel'
  16061.               'ncurses_typeahead'
  16062.               'ncurses_ungetch'
  16063.               'ncurses_ungetmouse'
  16064.               'ncurses_update_panels'
  16065.               'ncurses_use_default_colors'
  16066.               'ncurses_use_env'
  16067.               'ncurses_use_extended_names'
  16068.               'ncurses_vidattr'
  16069.               'ncurses_vline'
  16070.               'ncurses_waddch'
  16071.               'ncurses_waddstr'
  16072.               'ncurses_wattroff'
  16073.               'ncurses_wattron'
  16074.               'ncurses_wattrset'
  16075.               'ncurses_wborder'
  16076.               'ncurses_wclear'
  16077.               'ncurses_wcolor_set'
  16078.               'ncurses_werase'
  16079.               'ncurses_wgetch'
  16080.               'ncurses_whline'
  16081.               'ncurses_wmouse_trafo'
  16082.               'ncurses_wmove'
  16083.               'ncurses_wnoutrefresh'
  16084.               'ncurses_wrefresh'
  16085.               'ncurses_wstandend'
  16086.               'ncurses_wstandout'
  16087.               'ncurses_wvline'
  16088.               'next'
  16089.               'ngettext'
  16090.               'nl_langinfo'
  16091.               'nl2br'
  16092.               'notes_body'
  16093.               'notes_copy_db'
  16094.               'notes_create_db'
  16095.               'notes_create_note'
  16096.               'notes_drop_db'
  16097.               'notes_find_note'
  16098.               'notes_header_info'
  16099.               'notes_list_msgs'
  16100.               'notes_mark_read'
  16101.               'notes_mark_unread'
  16102.               'notes_nav_create'
  16103.               'notes_search'
  16104.               'notes_unread'
  16105.               'notes_version'
  16106.               'nsapi_request_headers'
  16107.               'nsapi_response_headers'
  16108.               'nsapi_virtual'
  16109.               'number_format'
  16110.               'ob_clean'
  16111.               'ob_end_clean'
  16112.               'ob_end_flush'
  16113.               'ob_flush'
  16114.               'ob_get_clean'
  16115.               'ob_get_contents'
  16116.               'ob_get_length'
  16117.               'ob_get_level'
  16118.               'ob_get_status'
  16119.               'ob_gzhandler'
  16120.               'ob_iconv_handler'
  16121.               'ob_implicit_flush'
  16122.               'ob_start'
  16123.               'ocibindbyname'
  16124.               'ocicancel'
  16125.               'ocicollappend'
  16126.               'ocicollassign'
  16127.               'ocicollassignelem'
  16128.               'ocicollgetelem'
  16129.               'ocicollmax'
  16130.               'ocicollsize'
  16131.               'ocicolltrim'
  16132.               'ocicolumnisnull'
  16133.               'ocicolumnname'
  16134.               'ocicolumnprecision'
  16135.               'ocicolumnscale'
  16136.               'ocicolumnsize'
  16137.               'ocicolumntype'
  16138.               'ocicolumntyperaw'
  16139.               'ocicommit'
  16140.               'ocidefinebyname'
  16141.               'ocierror'
  16142.               'ociexecute'
  16143.               'ocifetch'
  16144.               'ocifetchinto'
  16145.               'ocifetchstatement'
  16146.               'ocifreecollection'
  16147.               'ocifreecursor'
  16148.               'ocifreedesc'
  16149.               'ocifreestatement'
  16150.               'ociinternaldebug'
  16151.               'ociloadlob'
  16152.               'ocilogoff'
  16153.               'ocilogon'
  16154.               'ocinewcollection'
  16155.               'ocinewcursor'
  16156.               'ocinewdescriptor'
  16157.               'ocinlogon'
  16158.               'ocinumcols'
  16159.               'ociparse'
  16160.               'ociplogon'
  16161.               'ociresult'
  16162.               'ocirollback'
  16163.               'ocirowcount'
  16164.               'ocisavelob'
  16165.               'ocisavelobfile'
  16166.               'ociserverversion'
  16167.               'ocisetprefetch'
  16168.               'ocistatementtype'
  16169.               'ociwritelobtofile'
  16170.               'octdec'
  16171.               'odbc_autocommit'
  16172.               'odbc_binmode'
  16173.               'odbc_close'
  16174.               'odbc_close_all'
  16175.               'odbc_columnprivileges'
  16176.               'odbc_columns'
  16177.               'odbc_commit'
  16178.               'odbc_connect'
  16179.               'odbc_cursor'
  16180.               'odbc_data_source'
  16181.               'odbc_do'
  16182.               'odbc_error'
  16183.               'odbc_errormsg'
  16184.               'odbc_exec'
  16185.               'odbc_execute'
  16186.               'odbc_fetch_array'
  16187.               'odbc_fetch_into'
  16188.               'odbc_fetch_object'
  16189.               'odbc_fetch_row'
  16190.               'odbc_field_len'
  16191.               'odbc_field_name'
  16192.               'odbc_field_num'
  16193.               'odbc_field_precision'
  16194.               'odbc_field_scale'
  16195.               'odbc_field_type'
  16196.               'odbc_foreignkeys'
  16197.               'odbc_free_result'
  16198.               'odbc_gettypeinfo'
  16199.               'odbc_longreadlen'
  16200.               'odbc_next_result'
  16201.               'odbc_num_fields'
  16202.               'odbc_num_rows'
  16203.               'odbc_pconnect'
  16204.               'odbc_prepare'
  16205.               'odbc_primarykeys'
  16206.               'odbc_procedurecolumns'
  16207.               'odbc_procedures'
  16208.               'odbc_result'
  16209.               'odbc_result_all'
  16210.               'odbc_rollback'
  16211.               'odbc_setoption'
  16212.               'odbc_specialcolumns'
  16213.               'odbc_statistics'
  16214.               'odbc_tableprivileges'
  16215.               'odbc_tables'
  16216.               'opendir'
  16217.               'openlog'
  16218.               'openssl_csr_export'
  16219.               'openssl_csr_export_to_file'
  16220.               'openssl_csr_new'
  16221.               'openssl_csr_sign'
  16222.               'openssl_error_string'
  16223.               'openssl_free_key'
  16224.               'openssl_get_privatekey'
  16225.               'openssl_get_publickey'
  16226.               'openssl_open'
  16227.               'openssl_pkcs7_decrypt'
  16228.               'openssl_pkcs7_encrypt'
  16229.               'openssl_pkcs7_sign'
  16230.               'openssl_pkcs7_verify'
  16231.               'openssl_pkey_export'
  16232.               'openssl_pkey_export_to_file'
  16233.               'openssl_pkey_get_private'
  16234.               'openssl_pkey_get_public'
  16235.               'openssl_pkey_new'
  16236.               'openssl_private_decrypt'
  16237.               'openssl_private_encrypt'
  16238.               'openssl_public_decrypt'
  16239.               'openssl_public_encrypt'
  16240.               'openssl_seal'
  16241.               'openssl_sign'
  16242.               'openssl_verify'
  16243.               'openssl_x509_check_private_key'
  16244.               'openssl_x509_checkpurpose'
  16245.               'openssl_x509_export'
  16246.               'openssl_x509_export_to_file'
  16247.               'openssl_x509_free'
  16248.               'openssl_x509_parse'
  16249.               'openssl_x509_read'
  16250.               'ora_bind'
  16251.               'ora_close'
  16252.               'ora_columnname'
  16253.               'ora_columnsize'
  16254.               'ora_columntype'
  16255.               'ora_commit'
  16256.               'ora_commitoff'
  16257.               'ora_commiton'
  16258.               'ora_do'
  16259.               'ora_error'
  16260.               'ora_errorcode'
  16261.               'ora_exec'
  16262.               'ora_fetch'
  16263.               'ora_fetch_into'
  16264.               'ora_getcolumn'
  16265.               'ora_logoff'
  16266.               'ora_logon'
  16267.               'ora_numcols'
  16268.               'ora_numrows'
  16269.               'ora_open'
  16270.               'ora_parse'
  16271.               'ora_plogon'
  16272.               'ora_rollback'
  16273.               'ord'
  16274.               'overload'
  16275.               'ovrimos_close'
  16276.               'ovrimos_commit'
  16277.               'ovrimos_connect'
  16278.               'ovrimos_cursor'
  16279.               'ovrimos_exec'
  16280.               'ovrimos_execute'
  16281.               'ovrimos_fetch_into'
  16282.               'ovrimos_fetch_row'
  16283.               'ovrimos_field_len'
  16284.               'ovrimos_field_name'
  16285.               'ovrimos_field_num'
  16286.               'ovrimos_field_type'
  16287.               'ovrimos_free_result'
  16288.               'ovrimos_longreadlen'
  16289.               'ovrimos_num_fields'
  16290.               'ovrimos_num_rows'
  16291.               'ovrimos_prepare'
  16292.               'ovrimos_result'
  16293.               'ovrimos_result_all'
  16294.               'ovrimos_rollback'
  16295.               'pack'
  16296.               'parse_ini_file'
  16297.               'parse_str'
  16298.               'parse_url'
  16299.               'passthru'
  16300.               'pathinfo'
  16301.               'pclose'
  16302.               'pcntl_exec'
  16303.               'pcntl_fork'
  16304.               'pcntl_signal'
  16305.               'pcntl_waitpid'
  16306.               'pcntl_wexitstatus'
  16307.               'pcntl_wifexited'
  16308.               'pcntl_wifsignaled'
  16309.               'pcntl_wifstopped'
  16310.               'pcntl_wstopsig'
  16311.               'pcntl_wtermsig'
  16312.               'pdf_add_annotation'
  16313.               'pdf_add_bookmark'
  16314.               'pdf_add_launchlink'
  16315.               'pdf_add_locallink'
  16316.               'pdf_add_note'
  16317.               'pdf_add_outline'
  16318.               'pdf_add_pdflink'
  16319.               'pdf_add_thumbnail'
  16320.               'pdf_add_weblink'
  16321.               'pdf_arc'
  16322.               'pdf_arcn'
  16323.               'pdf_attach_file'
  16324.               'pdf_begin_page'
  16325.               'pdf_begin_pattern'
  16326.               'pdf_begin_template'
  16327.               'pdf_circle'
  16328.               'pdf_clip'
  16329.               'pdf_close'
  16330.               'pdf_close_image'
  16331.               'pdf_close_pdi'
  16332.               'pdf_close_pdi_page'
  16333.               'pdf_closepath'
  16334.               'pdf_closepath_fill_stroke'
  16335.               'pdf_closepath_stroke'
  16336.               'pdf_concat'
  16337.               'pdf_continue_text'
  16338.               'pdf_curveto'
  16339.               'pdf_delete'
  16340.               'pdf_end_page'
  16341.               'pdf_end_pattern'
  16342.               'pdf_end_template'
  16343.               'pdf_fill'
  16344.               'pdf_fill_stroke'
  16345.               'pdf_findfont'
  16346.               'pdf_get_buffer'
  16347.               'pdf_get_font'
  16348.               'pdf_get_fontname'
  16349.               'pdf_get_fontsize'
  16350.               'pdf_get_image_height'
  16351.               'pdf_get_image_width'
  16352.               'pdf_get_majorversion'
  16353.               'pdf_get_minorversion'
  16354.               'pdf_get_parameter'
  16355.               'pdf_get_pdi_parameter'
  16356.               'pdf_get_pdi_value'
  16357.               'pdf_get_value'
  16358.               'pdf_initgraphics'
  16359.               'pdf_lineto'
  16360.               'pdf_makespotcolor'
  16361.               'pdf_moveto'
  16362.               'pdf_new'
  16363.               'pdf_open'
  16364.               'pdf_open_ccitt'
  16365.               'pdf_open_file'
  16366.               'pdf_open_gif'
  16367.               'pdf_open_image'
  16368.               'pdf_open_image_file'
  16369.               'pdf_open_jpeg'
  16370.               'pdf_open_memory_image'
  16371.               'pdf_open_pdi'
  16372.               'pdf_open_pdi_page'
  16373.               'pdf_open_png'
  16374.               'pdf_open_tiff'
  16375.               'pdf_place_image'
  16376.               'pdf_place_pdi_page'
  16377.               'pdf_rect'
  16378.               'pdf_restore'
  16379.               'pdf_rotate'
  16380.               'pdf_save'
  16381.               'pdf_scale'
  16382.               'pdf_set_border_color'
  16383.               'pdf_set_border_dash'
  16384.               'pdf_set_border_style'
  16385.               'pdf_set_char_spacing'
  16386.               'pdf_set_duration'
  16387.               'pdf_set_font'
  16388.               'pdf_set_horiz_scaling'
  16389.               'pdf_set_info'
  16390.               'pdf_set_parameter'
  16391.               'pdf_set_text_pos'
  16392.               'pdf_set_value'
  16393.               'pdf_setcolor'
  16394.               'pdf_setdash'
  16395.               'pdf_setflat'
  16396.               'pdf_setfont'
  16397.               'pdf_setgray'
  16398.               'pdf_setgray_fill'
  16399.               'pdf_setgray_stroke'
  16400.               'pdf_setlinecap'
  16401.               'pdf_setlinejoin'
  16402.               'pdf_setlinewidth'
  16403.               'pdf_setmatrix'
  16404.               'pdf_setmiterlimit'
  16405.               'pdf_setpolydash'
  16406.               'pdf_setrgbcolor'
  16407.               'pdf_setrgbcolor_fill'
  16408.               'pdf_setrgbcolor_stroke'
  16409.               'pdf_show'
  16410.               'pdf_show_boxed'
  16411.               'pdf_show_xy'
  16412.               'pdf_skew'
  16413.               'pdf_stringwidth'
  16414.               'pdf_stroke'
  16415.               'pdf_translate'
  16416.               'pfpro_cleanup'
  16417.               'pfpro_init'
  16418.               'pfpro_process'
  16419.               'pfpro_process_raw'
  16420.               'pfpro_version'
  16421.               'pfsockopen'
  16422.               'pg_affected_rows'
  16423.               'pg_cancel_query'
  16424.               'pg_client_encoding'
  16425.               'pg_close'
  16426.               'pg_connect'
  16427.               'pg_connection_busy'
  16428.               'pg_connection_reset'
  16429.               'pg_connection_status'
  16430.               'pg_convert'
  16431.               'pg_copy_from'
  16432.               'pg_copy_to'
  16433.               'pg_dbname'
  16434.               'pg_delete'
  16435.               'pg_end_copy'
  16436.               'pg_escape_bytea'
  16437.               'pg_escape_string'
  16438.               'pg_fetch_all'
  16439.               'pg_fetch_array'
  16440.               'pg_fetch_assoc'
  16441.               'pg_fetch_object'
  16442.               'pg_fetch_result'
  16443.               'pg_fetch_row'
  16444.               'pg_field_is_null'
  16445.               'pg_field_name'
  16446.               'pg_field_num'
  16447.               'pg_field_prtlen'
  16448.               'pg_field_size'
  16449.               'pg_field_type'
  16450.               'pg_free_result'
  16451.               'pg_get_notify'
  16452.               'pg_get_pid'
  16453.               'pg_get_result'
  16454.               'pg_host'
  16455.               'pg_insert'
  16456.               'pg_last_error'
  16457.               'pg_last_notice'
  16458.               'pg_last_oid'
  16459.               'pg_lo_close'
  16460.               'pg_lo_create'
  16461.               'pg_lo_export'
  16462.               'pg_lo_import'
  16463.               'pg_lo_open'
  16464.               'pg_lo_read'
  16465.               'pg_lo_read_all'
  16466.               'pg_lo_seek'
  16467.               'pg_lo_tell'
  16468.               'pg_lo_unlink'
  16469.               'pg_lo_write'
  16470.               'pg_meta_data'
  16471.               'pg_num_fields'
  16472.               'pg_num_rows'
  16473.               'pg_options'
  16474.               'pg_pconnect'
  16475.               'pg_ping'
  16476.               'pg_port'
  16477.               'pg_put_line'
  16478.               'pg_query'
  16479.               'pg_result_error'
  16480.               'pg_result_seek'
  16481.               'pg_result_status'
  16482.               'pg_select'
  16483.               'pg_send_query'
  16484.               'pg_set_client_encoding'
  16485.               'pg_trace'
  16486.               'pg_tty'
  16487.               'pg_unescape_bytea'
  16488.               'pg_untrace'
  16489.               'pg_update'
  16490.               'php_ini_scanned_files'
  16491.               'php_logo_guid'
  16492.               'php_sapi_name'
  16493.               'php_uname'
  16494.               'phpcredits'
  16495.               'phpinfo'
  16496.               'phpversion'
  16497.               'pi'
  16498.               'png2wbmp'
  16499.               'popen'
  16500.               'pos'
  16501.               'posix_ctermid'
  16502.               'posix_get_last_error'
  16503.               'posix_getcwd'
  16504.               'posix_getegid'
  16505.               'posix_geteuid'
  16506.               'posix_getgid'
  16507.               'posix_getgrgid'
  16508.               'posix_getgrnam'
  16509.               'posix_getgroups'
  16510.               'posix_getlogin'
  16511.               'posix_getpgid'
  16512.               'posix_getpgrp'
  16513.               'posix_getpid'
  16514.               'posix_getppid'
  16515.               'posix_getpwnam'
  16516.               'posix_getpwuid'
  16517.               'posix_getrlimit'
  16518.               'posix_getsid'
  16519.               'posix_getuid'
  16520.               'posix_isatty'
  16521.               'posix_kill'
  16522.               'posix_mkfifo'
  16523.               'posix_setegid'
  16524.               'posix_seteuid'
  16525.               'posix_setgid'
  16526.               'posix_setpgid'
  16527.               'posix_setsid'
  16528.               'posix_setuid'
  16529.               'posix_strerror'
  16530.               'posix_times'
  16531.               'posix_ttyname'
  16532.               'posix_uname'
  16533.               'pow'
  16534.               'preg_grep'
  16535.               'preg_match'
  16536.               'preg_match_all'
  16537.               'preg_quote'
  16538.               'preg_replace'
  16539.               'preg_replace_callback'
  16540.               'preg_split'
  16541.               'prev'
  16542.               'print_r'
  16543.               'printer_abort'
  16544.               'printer_close'
  16545.               'printer_create_brush'
  16546.               'printer_create_dc'
  16547.               'printer_create_font'
  16548.               'printer_create_pen'
  16549.               'printer_delete_brush'
  16550.               'printer_delete_dc'
  16551.               'printer_delete_font'
  16552.               'printer_delete_pen'
  16553.               'printer_draw_bmp'
  16554.               'printer_draw_chord'
  16555.               'printer_draw_elipse'
  16556.               'printer_draw_line'
  16557.               'printer_draw_pie'
  16558.               'printer_draw_rectangle'
  16559.               'printer_draw_roundrect'
  16560.               'printer_draw_text'
  16561.               'printer_end_doc'
  16562.               'printer_end_page'
  16563.               'printer_get_option'
  16564.               'printer_list'
  16565.               'printer_logical_fontheight'
  16566.               'printer_open'
  16567.               'printer_select_brush'
  16568.               'printer_select_font'
  16569.               'printer_select_pen'
  16570.               'printer_set_option'
  16571.               'printer_start_doc'
  16572.               'printer_start_page'
  16573.               'printer_write'
  16574.               'printf'
  16575.               'proc_close'
  16576.               'proc_get_status'
  16577.               'proc_nice'
  16578.               'proc_open'
  16579.               'proc_terminate'
  16580.               'pspell_add_to_personal'
  16581.               'pspell_add_to_session'
  16582.               'pspell_check'
  16583.               'pspell_clear_session'
  16584.               'pspell_config_create'
  16585.               'pspell_config_ignore'
  16586.               'pspell_config_mode'
  16587.               'pspell_config_personal'
  16588.               'pspell_config_repl'
  16589.               'pspell_config_runtogether'
  16590.               'pspell_config_save_repl'
  16591.               'pspell_new'
  16592.               'pspell_new_config'
  16593.               'pspell_new_personal'
  16594.               'pspell_save_wordlist'
  16595.               'pspell_store_replacement'
  16596.               'pspell_suggest'
  16597.               'putenv'
  16598.               'qdom_error'
  16599.               'qdom_tree'
  16600.               'quoted_printable_decode'
  16601.               'quotemeta'
  16602.               'rad2deg'
  16603.               'rand'
  16604.               'range'
  16605.               'rawurldecode'
  16606.               'rawurlencode'
  16607.               'read_exif_data'
  16608.               'readdir'
  16609.               'readfile'
  16610.               'readgzfile'
  16611.               'readline'
  16612.               'readline_add_history'
  16613.               'readline_clear_history'
  16614.               'readline_completion_function'
  16615.               'readline_info'
  16616.               'readline_list_history'
  16617.               'readline_read_history'
  16618.               'readline_write_history'
  16619.               'readlink'
  16620.               'realpath'
  16621.               'recode'
  16622.               'recode_file'
  16623.               'recode_string'
  16624.               'register_shutdown_function'
  16625.               'register_tick_function'
  16626.               'rename'
  16627.               'reset'
  16628.               'restore_error_handler'
  16629.               'restore_include_path'
  16630.               'rewind'
  16631.               'rewinddir'
  16632.               'rmdir'
  16633.               'round'
  16634.               'rsort'
  16635.               'rtrim'
  16636.               'scandir'
  16637.               'sem_acquire'
  16638.               'sem_get'
  16639.               'sem_release'
  16640.               'sem_remove'
  16641.               'serialize'
  16642.               'sesam_affected_rows'
  16643.               'sesam_commit'
  16644.               'sesam_connect'
  16645.               'sesam_diagnostic'
  16646.               'sesam_disconnect'
  16647.               'sesam_errormsg'
  16648.               'sesam_execimm'
  16649.               'sesam_fetch_array'
  16650.               'sesam_fetch_result'
  16651.               'sesam_fetch_row'
  16652.               'sesam_field_array'
  16653.               'sesam_field_name'
  16654.               'sesam_free_result'
  16655.               'sesam_num_fields'
  16656.               'sesam_query'
  16657.               'sesam_rollback'
  16658.               'sesam_seek_row'
  16659.               'sesam_settransaction'
  16660.               'session_cache_expire'
  16661.               'session_cache_limiter'
  16662.               'session_decode'
  16663.               'session_destroy'
  16664.               'session_encode'
  16665.               'session_get_cookie_params'
  16666.               'session_id'
  16667.               'session_is_registered'
  16668.               'session_module_name'
  16669.               'session_name'
  16670.               'session_regenerate_id'
  16671.               'session_register'
  16672.               'session_save_path'
  16673.               'session_set_cookie_params'
  16674.               'session_set_save_handler'
  16675.               'session_start'
  16676.               'session_unregister'
  16677.               'session_unset'
  16678.               'session_write_close'
  16679.               'set_error_handler'
  16680.               'set_file_buffer'
  16681.               'set_include_path'
  16682.               'set_magic_quotes_runtime'
  16683.               'set_time_limit'
  16684.               'setcookie'
  16685.               'setlocale'
  16686.               'settype'
  16687.               'sha1'
  16688.               'sha1_file'
  16689.               'shell_exec'
  16690.               'shm_attach'
  16691.               'shm_detach'
  16692.               'shm_get_var'
  16693.               'shm_put_var'
  16694.               'shm_remove'
  16695.               'shm_remove_var'
  16696.               'shmop_close'
  16697.               'shmop_delete'
  16698.               'shmop_open'
  16699.               'shmop_read'
  16700.               'shmop_size'
  16701.               'shmop_write'
  16702.               'show_source'
  16703.               'shuffle'
  16704.               'similar_text'
  16705.               'sin'
  16706.               'sinh'
  16707.               'sizeof'
  16708.               'sleep'
  16709.               'snmp_get_quick_print'
  16710.               'snmp_set_quick_print'
  16711.               'snmpget'
  16712.               'snmprealwalk'
  16713.               'snmpset'
  16714.               'snmpwalk'
  16715.               'snmpwalkoid'
  16716.               'socket_accept'
  16717.               'socket_bind'
  16718.               'socket_clear_error'
  16719.               'socket_close'
  16720.               'socket_connect'
  16721.               'socket_create'
  16722.               'socket_create_listen'
  16723.               'socket_create_pair'
  16724.               'socket_get_option'
  16725.               'socket_get_status'
  16726.               'socket_getpeername'
  16727.               'socket_getsockname'
  16728.               'socket_iovec_add'
  16729.               'socket_iovec_alloc'
  16730.               'socket_iovec_delete'
  16731.               'socket_iovec_fetch'
  16732.               'socket_iovec_free'
  16733.               'socket_iovec_set'
  16734.               'socket_last_error'
  16735.               'socket_listen'
  16736.               'socket_read'
  16737.               'socket_readv'
  16738.               'socket_recv'
  16739.               'socket_recvfrom'
  16740.               'socket_recvmsg'
  16741.               'socket_select'
  16742.               'socket_send'
  16743.               'socket_sendmsg'
  16744.               'socket_sendto'
  16745.               'socket_set_block'
  16746.               'socket_set_blocking'
  16747.               'socket_set_nonblock'
  16748.               'socket_set_option'
  16749.               'socket_set_timeout'
  16750.               'socket_shutdown'
  16751.               'socket_strerror'
  16752.               'socket_write'
  16753.               'socket_writev'
  16754.               'sort'
  16755.               'soundex'
  16756.               'split'
  16757.               'spliti'
  16758.               'sprintf'
  16759.               'sql_regcase'
  16760.               'sqlite_array_query'
  16761.               'sqlite_busy_timeout'
  16762.               'sqlite_changes'
  16763.               'sqlite_close'
  16764.               'sqlite_column'
  16765.               'sqlite_create_aggregate'
  16766.               'sqlite_create_function'
  16767.               'sqlite_current'
  16768.               'sqlite_error_string'
  16769.               'sqlite_escape_string'
  16770.               'sqlite_fetch_array'
  16771.               'sqlite_fetch_single'
  16772.               'sqlite_fetch_string'
  16773.               'sqlite_field_name'
  16774.               'sqlite_has_more'
  16775.               'sqlite_last_error'
  16776.               'sqlite_last_insert_rowid'
  16777.               'sqlite_libencoding'
  16778.               'sqlite_libversion'
  16779.               'sqlite_next'
  16780.               'sqlite_num_fields'
  16781.               'sqlite_num_rows'
  16782.               'sqlite_open'
  16783.               'sqlite_popen'
  16784.               'sqlite_query'
  16785.               'sqlite_rewind'
  16786.               'sqlite_seek'
  16787.               'sqlite_udf_decode_binary'
  16788.               'sqlite_udf_encode_binary'
  16789.               'sqlite_unbuffered_query'
  16790.               'sqrt'
  16791.               'srand'
  16792.               'sscanf'
  16793.               'stat'
  16794.               'str_ireplace'
  16795.               'str_pad'
  16796.               'str_repeat'
  16797.               'str_replace'
  16798.               'str_rot13'
  16799.               'str_shuffle'
  16800.               'str_split'
  16801.               'str_word_count'
  16802.               'strcasecmp'
  16803.               'strchr'
  16804.               'strcmp'
  16805.               'strcoll'
  16806.               'strcspn'
  16807.               'stream_context_create'
  16808.               'stream_context_get_options'
  16809.               'stream_context_set_option'
  16810.               'stream_context_set_params'
  16811.               'stream_copy_to_stream'
  16812.               'stream_filter_append'
  16813.               'stream_filter_prepend'
  16814.               'stream_filter_register'
  16815.               'stream_get_filters'
  16816.               'stream_get_line'
  16817.               'stream_get_meta_data'
  16818.               'stream_get_transports'
  16819.               'stream_get_wrappers'
  16820.               'stream_register_wrapper'
  16821.               'stream_select'
  16822.               'stream_set_blocking'
  16823.               'stream_set_timeout'
  16824.               'stream_set_write_buffer'
  16825.               'stream_socket_accept'
  16826.               'stream_socket_client'
  16827.               'stream_socket_get_name'
  16828.               'stream_socket_server'
  16829.               'stream_wrapper_register'
  16830.               'strftime'
  16831.               'strip_tags'
  16832.               'stripcslashes'
  16833.               'stripos'
  16834.               'stripslashes'
  16835.               'stristr'
  16836.               'strlen'
  16837.               'strnatcasecmp'
  16838.               'strnatcmp'
  16839.               'strncasecmp'
  16840.               'strncmp'
  16841.               'strpos'
  16842.               'strrchr'
  16843.               'strrev'
  16844.               'strripos'
  16845.               'strrpos'
  16846.               'strspn'
  16847.               'strstr'
  16848.               'strtok'
  16849.               'strtolower'
  16850.               'strtotime'
  16851.               'strtoupper'
  16852.               'strtr'
  16853.               'strval'
  16854.               'substr'
  16855.               'substr_count'
  16856.               'substr_replace'
  16857.               'swf_actiongeturl'
  16858.               'swf_actiongotoframe'
  16859.               'swf_actiongotolabel'
  16860.               'swf_actionnextframe'
  16861.               'swf_actionplay'
  16862.               'swf_actionprevframe'
  16863.               'swf_actionsettarget'
  16864.               'swf_actionstop'
  16865.               'swf_actiontogglequality'
  16866.               'swf_actionwaitforframe'
  16867.               'swf_addbuttonrecord'
  16868.               'swf_addcolor'
  16869.               'swf_closefile'
  16870.               'swf_definebitmap'
  16871.               'swf_definefont'
  16872.               'swf_defineline'
  16873.               'swf_definepoly'
  16874.               'swf_definerect'
  16875.               'swf_definetext'
  16876.               'swf_endbutton'
  16877.               'swf_enddoaction'
  16878.               'swf_endshape'
  16879.               'swf_endsymbol'
  16880.               'swf_fontsize'
  16881.               'swf_fontslant'
  16882.               'swf_fonttracking'
  16883.               'swf_getbitmapinfo'
  16884.               'swf_getfontinfo'
  16885.               'swf_getframe'
  16886.               'swf_labelframe'
  16887.               'swf_lookat'
  16888.               'swf_modifyobject'
  16889.               'swf_mulcolor'
  16890.               'swf_nextid'
  16891.               'swf_oncondition'
  16892.               'swf_openfile'
  16893.               'swf_ortho'
  16894.               'swf_ortho2'
  16895.               'swf_perspective'
  16896.               'swf_placeobject'
  16897.               'swf_polarview'
  16898.               'swf_popmatrix'
  16899.               'swf_posround'
  16900.               'swf_pushmatrix'
  16901.               'swf_removeobject'
  16902.               'swf_rotate'
  16903.               'swf_scale'
  16904.               'swf_setfont'
  16905.               'swf_setframe'
  16906.               'swf_shapearc'
  16907.               'swf_shapecurveto'
  16908.               'swf_shapecurveto3'
  16909.               'swf_shapefillbitmapclip'
  16910.               'swf_shapefillbitmaptile'
  16911.               'swf_shapefilloff'
  16912.               'swf_shapefillsolid'
  16913.               'swf_shapelinesolid'
  16914.               'swf_shapelineto'
  16915.               'swf_shapemoveto'
  16916.               'swf_showframe'
  16917.               'swf_startbutton'
  16918.               'swf_startdoaction'
  16919.               'swf_startshape'
  16920.               'swf_startsymbol'
  16921.               'swf_textwidth'
  16922.               'swf_translate'
  16923.               'swf_viewport'
  16924.               'swfaction'
  16925.               'swfbitmap'
  16926.               'swfbutton'
  16927.               'swfbutton_keypress'
  16928.               'swfdisplayitem'
  16929.               'swffill'
  16930.               'swffont'
  16931.               'swfgradient'
  16932.               'swfmorph'
  16933.               'swfmovie'
  16934.               'swfshape'
  16935.               'swfsprite'
  16936.               'swftext'
  16937.               'swftextfield'
  16938.               'sybase_affected_rows'
  16939.               'sybase_close'
  16940.               'sybase_connect'
  16941.               'sybase_data_seek'
  16942.               'sybase_deadlock_retry_count'
  16943.               'sybase_fetch_array'
  16944.               'sybase_fetch_assoc'
  16945.               'sybase_fetch_field'
  16946.               'sybase_fetch_object'
  16947.               'sybase_fetch_row'
  16948.               'sybase_field_seek'
  16949.               'sybase_free_result'
  16950.               'sybase_get_last_message'
  16951.               'sybase_min_client_severity'
  16952.               'sybase_min_error_severity'
  16953.               'sybase_min_message_severity'
  16954.               'sybase_min_server_severity'
  16955.               'sybase_num_fields'
  16956.               'sybase_num_rows'
  16957.               'sybase_pconnect'
  16958.               'sybase_query'
  16959.               'sybase_result'
  16960.               'sybase_select_db'
  16961.               'sybase_set_message_handler'
  16962.               'sybase_unbuffered_query'
  16963.               'symlink'
  16964.               'syslog'
  16965.               'system'
  16966.               'tan'
  16967.               'tanh'
  16968.               'tempnam'
  16969.               'textdomain'
  16970.               'time'
  16971.               'tmpfile'
  16972.               'token_get_all'
  16973.               'token_name'
  16974.               'touch'
  16975.               'trigger_error'
  16976.               'trim'
  16977.               'uasort'
  16978.               'ucfirst'
  16979.               'ucwords'
  16980.               'udm_add_search_limit'
  16981.               'udm_alloc_agent'
  16982.               'udm_api_version'
  16983.               'udm_cat_list'
  16984.               'udm_cat_path'
  16985.               'udm_check_charset'
  16986.               'udm_check_stored'
  16987.               'udm_clear_search_limits'
  16988.               'udm_close_stored'
  16989.               'udm_crc32'
  16990.               'udm_errno'
  16991.               'udm_error'
  16992.               'udm_find'
  16993.               'udm_free_agent'
  16994.               'udm_free_ispell_data'
  16995.               'udm_free_res'
  16996.               'udm_get_doc_count'
  16997.               'udm_get_res_field'
  16998.               'udm_get_res_param'
  16999.               'udm_load_ispell_data'
  17000.               'udm_open_stored'
  17001.               'udm_set_agent_param'
  17002.               'uksort'
  17003.               'umask'
  17004.               'uniqid'
  17005.               'unixtojd'
  17006.               'unlink'
  17007.               'unpack'
  17008.               'unregister_tick_function'
  17009.               'unserialize'
  17010.               'unset'
  17011.               'urldecode'
  17012.               'urlencode'
  17013.               'user_error'
  17014.               'usleep'
  17015.               'usort'
  17016.               'utf8_decode'
  17017.               'utf8_encode'
  17018.               'var_dump'
  17019.               'var_export'
  17020.               'variant'
  17021.               'version_compare'
  17022.               'virtual'
  17023.               'vpopmail_add_alias_domain'
  17024.               'vpopmail_add_alias_domain_ex'
  17025.               'vpopmail_add_domain'
  17026.               'vpopmail_add_domain_ex'
  17027.               'vpopmail_add_user'
  17028.               'vpopmail_alias_add'
  17029.               'vpopmail_alias_del'
  17030.               'vpopmail_alias_del_domain'
  17031.               'vpopmail_alias_get'
  17032.               'vpopmail_alias_get_all'
  17033.               'vpopmail_auth_user'
  17034.               'vpopmail_del_domain'
  17035.               'vpopmail_del_domain_ex'
  17036.               'vpopmail_del_user'
  17037.               'vpopmail_error'
  17038.               'vpopmail_passwd'
  17039.               'vpopmail_set_user_quota'
  17040.               'vprintf'
  17041.               'vsprintf'
  17042.               'w32api_deftype'
  17043.               'w32api_init_dtype'
  17044.               'w32api_invoke_function'
  17045.               'w32api_register_function'
  17046.               'w32api_set_call_method'
  17047.               'wddx_add_vars'
  17048.               'wddx_deserialize'
  17049.               'wddx_packet_end'
  17050.               'wddx_packet_start'
  17051.               'wddx_serialize_value'
  17052.               'wddx_serialize_vars'
  17053.               'wordwrap'
  17054.               'xml_error_string'
  17055.               'xml_get_current_byte_index'
  17056.               'xml_get_current_column_number'
  17057.               'xml_get_current_line_number'
  17058.               'xml_get_error_code'
  17059.               'xml_parse'
  17060.               'xml_parse_into_struct'
  17061.               'xml_parser_create'
  17062.               'xml_parser_create_ns'
  17063.               'xml_parser_free'
  17064.               'xml_parser_get_option'
  17065.               'xml_parser_set_option'
  17066.               'xml_set_character_data_handler'
  17067.               'xml_set_default_handler'
  17068.               'xml_set_element_handler'
  17069.               'xml_set_end_namespace_decl_handler'
  17070.               'xml_set_external_entity_ref_handler'
  17071.               'xml_set_notation_decl_handler'
  17072.               'xml_set_object'
  17073.               'xml_set_processing_instruction_handler'
  17074.               'xml_set_start_namespace_decl_handler'
  17075.               'xml_set_unparsed_entity_decl_handler'
  17076.               'xmlrpc_decode'
  17077.               'xmlrpc_decode_request'
  17078.               'xmlrpc_encode'
  17079.               'xmlrpc_encode_request'
  17080.               'xmlrpc_get_type'
  17081.               'xmlrpc_parse_method_descriptions'
  17082.               'xmlrpc_server_add_introspection_data'
  17083.               'xmlrpc_server_call_method'
  17084.               'xmlrpc_server_create'
  17085.               'xmlrpc_server_destroy'
  17086.               'xmlrpc_server_register_introspection_callback'
  17087.               'xmlrpc_server_register_method'
  17088.               'xmlrpc_set_type'
  17089.               'xpath_eval'
  17090.               'xpath_eval_expression'
  17091.               'xpath_new_context'
  17092.               'xptr_eval'
  17093.               'xptr_new_context'
  17094.               'xslt_create'
  17095.               'xslt_errno'
  17096.               'xslt_error'
  17097.               'xslt_free'
  17098.               'xslt_process'
  17099.               'xslt_set_base'
  17100.               'xslt_set_encoding'
  17101.               'xslt_set_error_handler'
  17102.               'xslt_set_log'
  17103.               'xslt_set_sax_handler'
  17104.               'xslt_set_sax_handlers'
  17105.               'xslt_set_scheme_handler'
  17106.               'xslt_set_scheme_handlers'
  17107.               'yaz_addinfo'
  17108.               'yaz_ccl_conf'
  17109.               'yaz_ccl_parse'
  17110.               'yaz_close'
  17111.               'yaz_connect'
  17112.               'yaz_database'
  17113.               'yaz_element'
  17114.               'yaz_errno'
  17115.               'yaz_error'
  17116.               'yaz_get_option'
  17117.               'yaz_hits'
  17118.               'yaz_itemorder'
  17119.               'yaz_present'
  17120.               'yaz_range'
  17121.               'yaz_record'
  17122.               'yaz_scan'
  17123.               'yaz_scan_result'
  17124.               'yaz_schema'
  17125.               'yaz_search'
  17126.               'yaz_set_option'
  17127.               'yaz_sort'
  17128.               'yaz_syntax'
  17129.               'yaz_wait'
  17130.               'yp_all'
  17131.               'yp_cat'
  17132.               'yp_err_string'
  17133.               'yp_errno'
  17134.               'yp_first'
  17135.               'yp_get_default_domain'
  17136.               'yp_master'
  17137.               'yp_match'
  17138.               'yp_next'
  17139.               'yp_order'
  17140.               'zend_logo_guid'
  17141.               'zend_version'
  17142.               'zip_close'
  17143.               'zip_entry_close'
  17144.               'zip_entry_compressedsize'
  17145.               'zip_entry_compressionmethod'
  17146.               'zip_entry_filesize'
  17147.               'zip_entry_name'
  17148.               'zip_entry_open'
  17149.               'zip_entry_read'
  17150.               'zip_open'
  17151.               'zip_read'
  17152.               'zlib_get_coding_type')
  17153.             IgnoreCase = True
  17154.           end>
  17155.         HighlightPos = cpAny
  17156.         IgnoreAsParent = False
  17157.       end>
  17158.     CodeTemplates = <
  17159.       item
  17160.         Name = 'for'
  17161.         Description = 'for $i loop'
  17162.         Code.Strings = (
  17163.           'for($i=0; $i< ; $i++){'
  17164.           '}')
  17165.       end>
  17166.     SubAnalyzers = <
  17167.       item
  17168.         DisplayName = 'HTML'
  17169.         StyleName = 'HTML'
  17170.         StartExpression = '\?>'#13#10
  17171.         EndExpression = '<\?'#13#10
  17172.       end>
  17173.     SampleText.Strings = (
  17174.       '<?php'
  17175.       '$string = "Hello";'
  17176.       '$number = 15;'
  17177.       'for ($i=0; $i<$number; $i++) {'
  17178.       '  print $string;'
  17179.       '}'
  17180.       '?>')
  17181.     TokenTypeNames.Strings = (
  17182.       'Unknown'
  17183.       'Comment'
  17184.       'Identifier'
  17185.       'Symbol'
  17186.       'String'
  17187.       'Integer const'
  17188.       'Float const'
  17189.       'Hex const'
  17190.       'Char const'
  17191.       'Code Start'
  17192.       'Code End')
  17193.     MarkedBlockStyle = 'Marked block'
  17194.     DefaultStyleName = 'Default'
  17195.     Extentions = 'php phtml php3 php4 php5 inc pimg'
  17196.     LexerName = 'PHP'
  17197.   end
  17198. end
  17199.